Commit 4a03c7d4 authored by Benjamin Peterson's avatar Benjamin Peterson

merge 2.7.4 release branch

parents e48b2c29 01d9a775
...@@ -16,7 +16,7 @@ class GroupDatabaseTestCase(unittest.TestCase): ...@@ -16,7 +16,7 @@ class GroupDatabaseTestCase(unittest.TestCase):
self.assertEqual(value[1], value.gr_passwd) self.assertEqual(value[1], value.gr_passwd)
self.assertIsInstance(value.gr_passwd, basestring) self.assertIsInstance(value.gr_passwd, basestring)
self.assertEqual(value[2], value.gr_gid) self.assertEqual(value[2], value.gr_gid)
self.assertIsInstance(value.gr_gid, int) self.assertIsInstance(value.gr_gid, (long, int))
self.assertEqual(value[3], value.gr_mem) self.assertEqual(value[3], value.gr_mem)
self.assertIsInstance(value.gr_mem, list) self.assertIsInstance(value.gr_mem, list)
......
...@@ -18,9 +18,9 @@ class PwdTest(unittest.TestCase): ...@@ -18,9 +18,9 @@ class PwdTest(unittest.TestCase):
self.assertEqual(e[1], e.pw_passwd) self.assertEqual(e[1], e.pw_passwd)
self.assertIsInstance(e.pw_passwd, basestring) self.assertIsInstance(e.pw_passwd, basestring)
self.assertEqual(e[2], e.pw_uid) self.assertEqual(e[2], e.pw_uid)
self.assertIsInstance(e.pw_uid, int) self.assertIsInstance(e.pw_uid, (int, long))
self.assertEqual(e[3], e.pw_gid) self.assertEqual(e[3], e.pw_gid)
self.assertIsInstance(e.pw_gid, int) self.assertIsInstance(e.pw_gid, (int, long))
self.assertEqual(e[4], e.pw_gecos) self.assertEqual(e[4], e.pw_gecos)
self.assertIsInstance(e.pw_gecos, basestring) self.assertIsInstance(e.pw_gecos, basestring)
self.assertEqual(e[5], e.pw_dir) self.assertEqual(e[5], e.pw_dir)
......
...@@ -21,7 +21,8 @@ What's New in Python 2.7.4? ...@@ -21,7 +21,8 @@ What's New in Python 2.7.4?
Library Library
------- -------
- Issue #17531: Return group and user ids as int instead long when possible. - Issue #17531: Fix tests that thought group and user ids were always the int
type.
What's New in Python 2.7.4 release candidate 1 What's New in Python 2.7.4 release candidate 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment