From: Raymond Hettinger Date: Wed, 5 Jan 2011 20:08:25 +0000 (+0000) Subject: Fix count of flag fields. Being one short caused the 'quiet' option not to print. X-Git-Tag: v3.2rc1~174 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90e8f8cd9b18fd18581a1ee01664f50852fe68f8;p=thirdparty%2FPython%2Fcpython.git Fix count of flag fields. Being one short caused the 'quiet' option not to print. --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 730567eaf70e..de51155a49a4 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 };