mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
This commit is contained in:
parent
3ddc435af6
commit
ce8e33a095
107 changed files with 436 additions and 794 deletions
|
|
@ -661,7 +661,7 @@ class TestCopy(unittest.TestCase):
|
|||
v = copy.deepcopy(u)
|
||||
self.assertNotEqual(v, u)
|
||||
self.assertEqual(len(v), 2)
|
||||
(x, y), (z, t) = sorted(v.items(), key=lambda k: k[0].i)
|
||||
(x, y), (z, t) = sorted(v.items(), key=lambda (k, v): k.i)
|
||||
self.assertFalse(x is a)
|
||||
self.assertEqual(x.i, a.i)
|
||||
self.assertTrue(y is b)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue