(subself, obj)
| 303 | def persistent_id(subself, obj): |
| 304 | raise AssertionError('should never be called') |
| 305 | def _persistent_id(subself, obj): |
| 306 | called.append(obj) |
| 307 | self.assertIsNone(super().persistent_id(obj)) |
| 308 | return obj |
| 309 | |
| 310 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
| 311 | f = io.BytesIO() |
nothing calls this directly
no test coverage detected