()
| 35 | |
| 36 | |
| 37 | def test_nested_list() -> None: |
| 38 | obj1 = ["a", [1, 2, 3]] |
| 39 | obj2 = deepcopy_minimal(obj1) |
| 40 | assert_different_identities(obj1, obj2) |
| 41 | assert_different_identities(obj1[1], obj2[1]) |
| 42 | |
| 43 | |
| 44 | class MyObject: ... |
nothing calls this directly
no test coverage detected