()
| 66 | |
| 67 | |
| 68 | def test_deepcopy_with_tuple(): |
| 69 | original = (1, 2, [3, 4]) |
| 70 | copy_obj = safe_deepcopy(original) |
| 71 | assert copy_obj == original |
| 72 | assert copy_obj is not original |
| 73 | assert copy_obj[2] is not original[2] |
| 74 | |
| 75 | |
| 76 | def test_deepcopy_with_frozenset(): |
nothing calls this directly
no test coverage detected