(self)
| 524 | MODE = 'pickle' |
| 525 | |
| 526 | def test_shareable(self): |
| 527 | with ignore_byteswarning(): |
| 528 | for obj in SHAREABLE: |
| 529 | if obj in PICKLEABLE: |
| 530 | self.assert_roundtrip_equal([obj]) |
| 531 | else: |
| 532 | self.assert_not_shareable([obj]) |
| 533 | |
| 534 | def test_not_shareable(self): |
| 535 | with ignore_byteswarning(): |
nothing calls this directly
no test coverage detected