summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-05 20:08:25 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-01-05 20:08:25 (GMT)
commit90e8f8cd9b18fd18581a1ee01664f50852fe68f8 (patch)
treef1d61e0c5010a4909ca2de7aa568418eb1be3413 /Python
parent452196fef1a613c44f757edcb55a8458e8dc9552 (diff)
downloadcpython-90e8f8cd9b18fd18581a1ee01664f50852fe68f8.zip
cpython-90e8f8cd9b18fd18581a1ee01664f50852fe68f8.tar.gz
cpython-90e8f8cd9b18fd18581a1ee01664f50852fe68f8.tar.bz2
Fix count of flag fields. Being one short caused the 'quiet' option not to print.
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c4
1 files changed, 2 insertions, 2 deletions
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 @@ static PyStructSequence_Desc flags_desc = {
flags__doc__, /* doc */
flags_fields, /* fields */
#ifdef RISCOS
- 12
+ 13
#else
- 11
+ 12
#endif
};