()
| 103 | |
| 104 | |
| 105 | def test_circular_reference(): |
| 106 | original = [] |
| 107 | original.append(original) |
| 108 | copy_obj = safe_deepcopy(original) |
| 109 | assert copy_obj is not original |
| 110 | assert copy_obj[0] is copy_obj |
| 111 | |
| 112 | |
| 113 | def test_deepcopy_object_without_dict(): |
nothing calls this directly
no test coverage detected