MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_unicode_high_plane

Method test_unicode_high_plane

Lib/test/pickletester.py:2833–2838  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2831 self.assert_is_copy(u, u2)
2832
2833 def test_unicode_high_plane(self):
2834 t = '\U00012345'
2835 for proto in protocols:
2836 p = self.dumps(t, proto)
2837 t2 = self.loads(p)
2838 self.assert_is_copy(t, t2)
2839
2840 def test_unicode_memoization(self):
2841 # Repeated str is re-used (even when escapes added).

Callers

nothing calls this directly

Calls 3

assert_is_copyMethod · 0.80
dumpsMethod · 0.45
loadsMethod · 0.45

Tested by

no test coverage detected