diff options
author | Georg Brandl <georg@python.org> | 2008-06-06 09:02:07 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-06 09:02:07 +0000 |
commit | 59bd692366284e3ddaac099780cde68200720882 (patch) | |
tree | 44348ba5a41a300091a3bd08ba0f6fbb8a21b161 /Python/sysmodule.c | |
parent | 64eb18db320d391b5fedb7f46703e9df07ee84d6 (diff) | |
download | cpython-59bd692366284e3ddaac099780cde68200720882.tar.gz |
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 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 }; |