diff options
author | Éric Araujo <merwok@netwok.org> | 2011-03-26 01:01:33 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-03-26 01:01:33 (GMT) |
commit | b3a591bf066ac262fd800939662c54b09812c566 (patch) | |
tree | 910541d6484120505b2c603724e45c0d00acdfa4 /Python/sysmodule.c | |
parent | 5c1da90f8cf0172cfb6591f1a37e436f3eef808c (diff) | |
parent | be3bd57ba22f7bda63dc0215b49b993a530e6145 (diff) | |
download | cpython-b3a591bf066ac262fd800939662c54b09812c566.zip cpython-b3a591bf066ac262fd800939662c54b09812c566.tar.gz cpython-b3a591bf066ac262fd800939662c54b09812c566.tar.bz2 |
Branch merge
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 31c6939..33255ad 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1312,7 +1312,6 @@ static PyTypeObject FlagsType; static PyStructSequence_Field flags_fields[] = { {"debug", "-d"}, - {"division_warning", "-Q"}, {"inspect", "-i"}, {"interactive", "-i"}, {"optimize", "-O or -OO"}, @@ -1336,9 +1335,9 @@ static PyStructSequence_Desc flags_desc = { flags__doc__, /* doc */ flags_fields, /* fields */ #ifdef RISCOS - 13 -#else 12 +#else + 11 #endif }; @@ -1356,7 +1355,6 @@ make_flags(void) PyStructSequence_SET_ITEM(seq, pos++, PyLong_FromLong(flag)) SetFlag(Py_DebugFlag); - SetFlag(Py_DivisionWarningFlag); SetFlag(Py_InspectFlag); SetFlag(Py_InteractiveFlag); SetFlag(Py_OptimizeFlag); |