cpython: 8554423dd392 (original) (raw)

--- a/Lib/test/test_copy.py +++ b/Lib/test/test_copy.py @@ -82,7 +82,8 @@ class TestCopy(unittest.TestCase): pass def f(): pass

@@ -90,15 +91,57 @@ class TestCopy(unittest.TestCase): def test_copy_list(self): x = [1, 2, 3]

def test_copy_tuple(self): x = (1, 2, 3)

def test_copy_dict(self): x = {"foo": 1, "bar": 2}

+

+

+

def test_copy_inst_vanilla(self): class C: