summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-01 08:59:13 +0000
committerGeorg Brandl <georg@python.org>2009-05-01 08:59:13 +0000
commitfb526ac34af13116733fcd0a306016e253d90c08 (patch)
tree89106830ad474ddc0b576bab4699852e4339d80e /Objects
parent4947606ecca1248bdfa9a71c7ea28239d0f64f56 (diff)
downloadcpython-git-fb526ac34af13116733fcd0a306016e253d90c08.tar.gz
Merged revisions 72159 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72159 | georg.brandl | 2009-05-01 10:51:37 +0200 (Fr, 01 Mai 2009) | 2 lines #5889: remove comma at the end of a list that some C compilers don't like. ........
Diffstat (limited to 'Objects')
-rw-r--r--Objects/stringlib/string_format.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringlib/string_format.h b/Objects/stringlib/string_format.h
index fabc7a1c4f..0f57f3fdd4 100644
--- a/Objects/stringlib/string_format.h
+++ b/Objects/stringlib/string_format.h
@@ -34,7 +34,7 @@ typedef struct {
typedef enum {
ANS_INIT,
ANS_AUTO,
- ANS_MANUAL,
+ ANS_MANUAL
} AutoNumberState; /* Keep track if we're auto-numbering fields */
/* Keeps track of our auto-numbering state, and which number field we're on */