diff options
author | Georg Brandl <georg@python.org> | 2008-06-06 09:02:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-06 09:02:07 (GMT) |
commit | c5e88d5f471056c14ae9d6677cef5473282936ad (patch) | |
tree | 6e9167f13dcd905f38fb4b745502441169c1fd10 /Python/sysmodule.c | |
parent | 9a5df4d3b7f849abbb068caf22d57e2c72f05d15 (diff) | |
download | cpython-c5e88d5f471056c14ae9d6677cef5473282936ad.zip cpython-c5e88d5f471056c14ae9d6677cef5473282936ad.tar.gz cpython-c5e88d5f471056c14ae9d6677cef5473282936ad.tar.bz2 |
Fix sys.flags sequence behavior and add a test case.
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 de2e91d..aebae62 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 }; |