[Python-checkins] r72160 - in python/branches/py3k: Objects/stringlib/string_format.h
georg.brandl
python-checkins at python.org
Fri May 1 10:59:14 CEST 2009
Author: georg.brandl
Date: Fri May 1 10:59:13 2009
New Revision: 72160
Log:
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.
........
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Objects/stringlib/string_format.h
Modified: python/branches/py3k/Objects/stringlib/string_format.h
==============================================================================
--- python/branches/py3k/Objects/stringlib/string_format.h (original)
+++ python/branches/py3k/Objects/stringlib/string_format.h Fri May 1 10:59:13 2009
@@ -34,7 +34,7 @@
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 */
More information about the Python-checkins
mailing list