From: Raymond Hettinger <python@rcn.com>
Date: Wed, 5 Jan 2011 20:08:25 +0000 (+0000)
Subject: Fix count of flag fields.  Being one short caused the 'quiet' option not to print.
X-Git-Tag: v3.2rc1~174
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90e8f8cd9b18fd18581a1ee01664f50852fe68f8;p=python

Fix count of flag fields.  Being one short caused the 'quiet' option not to print.
---

diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 730567eaf7..de51155a49 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1427,9 +1427,9 @@ static PyStructSequence_Desc flags_desc = {
     flags__doc__,       /* doc */
     flags_fields,       /* fields */
 #ifdef RISCOS
-    12
+    13
 #else
-    11
+    12
 #endif
 };