]> granicus.if.org Git - python/commitdiff
Fix count of flag fields. Being one short caused the 'quiet' option not to print.
authorRaymond Hettinger <python@rcn.com>
Wed, 5 Jan 2011 20:08:25 +0000 (20:08 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 5 Jan 2011 20:08:25 +0000 (20:08 +0000)
Python/sysmodule.c

index 730567eaf70e981138afffdc26d514833cb79045..de51155a49a4d593a8fb62df05be43a93258e09e 100644 (file)
@@ -1427,9 +1427,9 @@ static PyStructSequence_Desc flags_desc = {
     flags__doc__,       /* doc */
     flags_fields,       /* fields */
 #ifdef RISCOS
-    12
+    13
 #else
-    11
+    12
 #endif
 };