(self)
| 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). |
nothing calls this directly
no test coverage detected