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 | f303db16856c70e7f64c09259ea7e620beec5755 (patch) | |
tree | 8e080a162ac4c5f4951ba89e8777feb61b3a0ac6 /Python/sysmodule.c | |
parent | b8dbf0249000dbace2af53fd12b7c15c8c3ab9bd (diff) | |
download | cpython-f303db16856c70e7f64c09259ea7e620beec5755.tar.gz |
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 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 }; |