mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fix count of flag fields. Being one short caused the 'quiet' option not to print.
This commit is contained in:
parent
452196fef1
commit
90e8f8cd9b
1 changed files with 2 additions and 2 deletions
|
@ -1427,9 +1427,9 @@ static PyStructSequence_Desc flags_desc = {
|
||||||
flags__doc__, /* doc */
|
flags__doc__, /* doc */
|
||||||
flags_fields, /* fields */
|
flags_fields, /* fields */
|
||||||
#ifdef RISCOS
|
#ifdef RISCOS
|
||||||
12
|
13
|
||||||
#else
|
#else
|
||||||
11
|
12
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue