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 730567e..de51155 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1427,9 +1427,9 @@
     flags__doc__,       /* doc */
     flags_fields,       /* fields */
 #ifdef RISCOS
-    12
+    13
 #else
-    11
+    12
 #endif
 };