From 90e8f8cd9b18fd18581a1ee01664f50852fe68f8 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 5 Jan 2011 20:08:25 +0000 Subject: [PATCH] Fix count of flag fields. Being one short caused the 'quiet' option not to print. --- Python/sysmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 730567eaf70..de51155a49a 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 };