]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 77771 via svnmerge from
authorEric Smith <eric@trueblade.com>
Wed, 27 Jan 2010 00:59:59 +0000 (00:59 +0000)
committerEric Smith <eric@trueblade.com>
Wed, 27 Jan 2010 00:59:59 +0000 (00:59 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77771 | eric.smith | 2010-01-26 19:58:43 -0500 (Tue, 26 Jan 2010) | 1 line

  Removed unneeded test.
........

Lib/test/test_sys.py

index 65b4430e140d56d51d1f00d83a92bce6970a692c..37f01e986b9cca25081d9662b2c52d7ed23d41d7 100644 (file)
@@ -228,7 +228,6 @@ class SysModuleTest(unittest.TestCase):
     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)