Commit f3b1d786 authored by Georg Brandl's avatar Georg Brandl

Remove tabcheck from the expected flags in sys.flags.

parent 8ac7c387
...@@ -324,7 +324,7 @@ class SysModuleTest(unittest.TestCase): ...@@ -324,7 +324,7 @@ class SysModuleTest(unittest.TestCase):
self.failUnless(sys.flags) self.failUnless(sys.flags)
attrs = ("debug", "division_warning", attrs = ("debug", "division_warning",
"inspect", "interactive", "optimize", "dont_write_bytecode", "inspect", "interactive", "optimize", "dont_write_bytecode",
"no_site", "ignore_environment", "tabcheck", "verbose", "no_site", "ignore_environment", "verbose",
"bytes_warning") "bytes_warning")
for attr in attrs: for attr in attrs:
self.assert_(hasattr(sys.flags, attr), attr) self.assert_(hasattr(sys.flags, attr), attr)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment