diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-05 20:08:25 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-05 20:08:25 (GMT) |
commit | 90e8f8cd9b18fd18581a1ee01664f50852fe68f8 (patch) | |
tree | f1d61e0c5010a4909ca2de7aa568418eb1be3413 /Python/sysmodule.c | |
parent | 452196fef1a613c44f757edcb55a8458e8dc9552 (diff) | |
download | cpython-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/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 4 |
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 }; |