diff options
| author | Raymond Hettinger <python@rcn.com> | 2011-01-05 20:08:25 +0000 |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2011-01-05 20:08:25 +0000 |
| commit | 90e8f8cd9b18fd18581a1ee01664f50852fe68f8 (patch) | |
| tree | f1d61e0c5010a4909ca2de7aa568418eb1be3413 | |
| parent | 452196fef1a613c44f757edcb55a8458e8dc9552 (diff) | |
| download | cpython-git-90e8f8cd9b18fd18581a1ee01664f50852fe68f8.tar.gz | |
Fix count of flag fields. Being one short caused the 'quiet' option not to print.
| -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 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 }; |
