(self)
| 1975 | copy.deepcopy(f) |
| 1976 | |
| 1977 | def test_pickle(self): |
| 1978 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
| 1979 | with self.subTest(protocol=proto): |
| 1980 | f = self.reader(Queue(b'\xed\x95\x9c\n\xea\xb8\x80')) |
| 1981 | with self.assertRaisesRegex(TypeError, 'StreamReader'): |
| 1982 | pickle.dumps(f, proto) |
| 1983 | |
| 1984 | |
| 1985 | class StreamWriterTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected