From c5e88d5f471056c14ae9d6677cef5473282936ad Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 6 Jun 2008 09:02:07 +0000 Subject: Fix sys.flags sequence behavior and add a test case. --- Python/sysmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/sysmodule.c') diff --git a/Python/sysmodule.c b/Python/sysmodule.c index de2e91dbd1..aebae62498 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1150,9 +1150,9 @@ static PyStructSequence_Desc flags_desc = { flags__doc__, /* doc */ flags_fields, /* fields */ #ifdef RISCOS - 11 + 12 #else - 10 + 11 #endif }; -- cgit v1.2.1