summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-01-27 00:59:59 (GMT)
committerEric Smith <eric@trueblade.com>2010-01-27 00:59:59 (GMT)
commit52b4b4509b5692f9813bf881e9254fb51b1b2188 (patch)
tree1fb206d228113837ec0e19efd529b9783cd19f9a /Lib
parent7338a3934687d68576dfd587c77cc61317f6f6d1 (diff)
downloadcpython-52b4b4509b5692f9813bf881e9254fb51b1b2188.zip
cpython-52b4b4509b5692f9813bf881e9254fb51b1b2188.tar.gz
cpython-52b4b4509b5692f9813bf881e9254fb51b1b2188.tar.bz2
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. ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_sys.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 65b4430..37f01e9 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -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)