[Python-checkins] r87766 - python/branches/py3k/Python/sysmodule.c
raymond.hettinger
python-checkins at python.org
Wed Jan 5 21:08:25 CET 2011
Author: raymond.hettinger
Date: Wed Jan 5 21:08:25 2011
New Revision: 87766
Log:
Fix count of flag fields. Being one short caused the 'quiet' option not to print.
Modified:
python/branches/py3k/Python/sysmodule.c
Modified: python/branches/py3k/Python/sysmodule.c
==============================================================================
--- python/branches/py3k/Python/sysmodule.c (original)
+++ python/branches/py3k/Python/sysmodule.c Wed Jan 5 21:08:25 2011
@@ -1427,9 +1427,9 @@
flags__doc__, /* doc */
flags_fields, /* fields */
#ifdef RISCOS
- 12
+ 13
#else
- 11
+ 12
#endif
};
More information about the Python-checkins
mailing list