summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-06 09:02:07 (GMT)
committerGeorg Brandl <georg@python.org>2008-06-06 09:02:07 (GMT)
commitc5e88d5f471056c14ae9d6677cef5473282936ad (patch)
tree6e9167f13dcd905f38fb4b745502441169c1fd10 /Python/sysmodule.c
parent9a5df4d3b7f849abbb068caf22d57e2c72f05d15 (diff)
downloadcpython-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.c4
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
};