MCPcopy
hub / github.com/ScrapeGraphAI/Scrapegraph-ai / test_deepcopy_with_tuple

Function test_deepcopy_with_tuple

tests/utils/copy_utils_test.py:68–73  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

66
67
68def 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
76def test_deepcopy_with_frozenset():

Callers

nothing calls this directly

Calls 1

safe_deepcopyFunction · 0.90

Tested by

no test coverage detected