Merge 3.5 (Issue #19235)

This commit is contained in:
Yury Selivanov 2015-07-03 01:10:11 -04:00
commit bb215e2300
31 changed files with 101 additions and 69 deletions

View file

@ -196,7 +196,7 @@ class DictSetTest(unittest.TestCase):
def test_recursive_repr(self):
d = {}
d[42] = d.values()
self.assertRaises(RuntimeError, repr, d)
self.assertRaises(RecursionError, repr, d)
def test_abc_registry(self):
d = dict(a=1)