Remove tabcheck from the expected flags in sys.flags.
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 @@
         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)