MCPcopy Index your code
hub / github.com/python/cpython / test_uid_copy

Method test_uid_copy

Lib/test/test_plistlib.py:635–637  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

633 self.assertEqual(pickle.loads(pickle.dumps(UID(19), protocol=proto)), UID(19))
634
635 def test_uid_copy(self):
636 self.assertEqual(copy.copy(UID(1)), UID(1))
637 self.assertEqual(copy.deepcopy(UID(1)), UID(1))
638
639 def test_appleformatting(self):
640 for fmt in ALL_FORMATS:

Callers

nothing calls this directly

Calls 3

UIDClass · 0.90
assertEqualMethod · 0.45
copyMethod · 0.45

Tested by

no test coverage detected