diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-08 20:23:06 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-08 20:23:06 +0000 |
commit | be1501b976aa36733e6ef0b86c4f8c6844df3181 (patch) | |
tree | f81f3c506db1a12f56afa59b0c7dbb7e5ab810dd /Python/sysmodule.c | |
parent | 98b9c07ab76c7fa0b77c3cb683ab92c49ef3bbdc (diff) | |
download | cpython-git-be1501b976aa36733e6ef0b86c4f8c6844df3181.tar.gz |
Fix sys.flags to properly expose bytes_warning.
Closes issue #2790.
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 8a1ef3c5d7..c8842503be 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1178,9 +1178,9 @@ static PyStructSequence_Desc flags_desc = { flags__doc__, /* doc */ flags_fields, /* fields */ #ifdef RISCOS - 15 + 16 #else - 14 + 15 #endif }; |