From: Georg Brandl Date: Wed, 4 Jun 2008 14:03:46 +0000 (+0000) Subject: Remove tabcheck from the expected flags in sys.flags. X-Git-Tag: v3.0b1~155 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01a7d82432edbf297c32289737a40d7103a03527;p=thirdparty%2FPython%2Fcpython.git Remove tabcheck from the expected flags in sys.flags. --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index e1bc98d09745..e4821fc2bbea 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)