[Python-checkins] r77773 - in python/branches/py3k: Lib/test/test_sys.py

eric.smith python-checkins at python.org
Wed Jan 27 02:00:00 CET 2010


Author: eric.smith
Date: Wed Jan 27 01:59:59 2010
New Revision: 77773

Log:
Merged revisions 77771 via svnmerge from 
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.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/test/test_sys.py

Modified: python/branches/py3k/Lib/test/test_sys.py
==============================================================================
--- python/branches/py3k/Lib/test/test_sys.py	(original)
+++ python/branches/py3k/Lib/test/test_sys.py	Wed Jan 27 01:59:59 2010
@@ -228,7 +228,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