diff options
author | Georg Brandl <georg@python.org> | 2008-06-04 14:03:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-04 14:03:46 (GMT) |
commit | 01a7d82432edbf297c32289737a40d7103a03527 (patch) | |
tree | f2ef97a06e4fe6475efd64813254d181bbbadb4a | |
parent | e1b5ac640841e4233bcd0204efcd50fe9b50a6d0 (diff) | |
download | cpython-01a7d82432edbf297c32289737a40d7103a03527.zip cpython-01a7d82432edbf297c32289737a40d7103a03527.tar.gz cpython-01a7d82432edbf297c32289737a40d7103a03527.tar.bz2 |
Remove tabcheck from the expected flags in sys.flags.
-rw-r--r-- | Lib/test/test_sys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index e1bc98d..e4821fc 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -324,7 +324,7 @@ class SysModuleTest(unittest.TestCase): self.failUnless(sys.flags) attrs = ("debug", "division_warning", "inspect", "interactive", "optimize", "dont_write_bytecode", - "no_site", "ignore_environment", "tabcheck", "verbose", + "no_site", "ignore_environment", "verbose", "bytes_warning") for attr in attrs: self.assert_(hasattr(sys.flags, attr), attr) |