cpython: 52d7a308e3b4 (original) (raw)

--- a/Lib/test/test_copy.py +++ b/Lib/test/test_copy.py @@ -95,24 +95,67 @@ class TestCopy(unittest.TestCase): pass class WithMetaclass(metaclass=abc.ABCMeta): pass

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: