mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Merged revisions 77784 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77784 | eric.smith | 2010-01-26 21:06:25 -0500 (Tue, 26 Jan 2010) | 1 line Added named (but not numbered) attributes to sys.getwindowsversion() test. ........
This commit is contained in:
parent
9a11a36603
commit
a1f20b917a
1 changed files with 4 additions and 0 deletions
|
@ -241,6 +241,10 @@ class SysModuleTest(unittest.TestCase):
|
|||
self.assertIsInstance(v.build, int)
|
||||
self.assertIsInstance(v.platform, int)
|
||||
self.assertIsInstance(v.service_pack, str)
|
||||
self.assertIsInstance(v.service_pack_minor, int)
|
||||
self.assertIsInstance(v.service_pack_major, int)
|
||||
self.assertIsInstance(v.suite_mask, int)
|
||||
self.assertIsInstance(v.product_type, int)
|
||||
self.assertEqual(v[0], v.major)
|
||||
self.assertEqual(v[1], v.minor)
|
||||
self.assertEqual(v[2], v.build)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue