summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-04 14:03:46 (GMT)
committerGeorg Brandl <georg@python.org>2008-06-04 14:03:46 (GMT)
commit01a7d82432edbf297c32289737a40d7103a03527 (patch)
treef2ef97a06e4fe6475efd64813254d181bbbadb4a /Lib
parente1b5ac640841e4233bcd0204efcd50fe9b50a6d0 (diff)
downloadcpython-01a7d82432edbf297c32289737a40d7103a03527.zip
cpython-01a7d82432edbf297c32289737a40d7103a03527.tar.gz
cpython-01a7d82432edbf297c32289737a40d7103a03527.tar.bz2
Remove tabcheck from the expected flags in sys.flags.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_sys.py2
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)