[Python-checkins] r77771 - python/trunk/Lib/test/test_sys.py

eric.smith python-checkins at python.org
Wed Jan 27 01:58:44 CET 2010


Author: eric.smith
Date: Wed Jan 27 01:58:43 2010
New Revision: 77771

Log:
Removed unneeded test.

Modified:
   python/trunk/Lib/test/test_sys.py

Modified: python/trunk/Lib/test/test_sys.py
==============================================================================
--- python/trunk/Lib/test/test_sys.py	(original)
+++ python/trunk/Lib/test/test_sys.py	Wed Jan 27 01:58:43 2010
@@ -206,7 +206,6 @@
     def test_getwindowsversion(self):
         if hasattr(sys, "getwindowsversion"):
             v = sys.getwindowsversion()
-            self.assertTrue(isinstance(v[:], tuple))
             self.assertEqual(len(v), 5)
             self.assertIsInstance(v[0], int)
             self.assertIsInstance(v[1], int)


More information about the Python-checkins mailing list