(self)
| 923 | decompressed = None |
| 924 | |
| 925 | def testPickle(self): |
| 926 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
| 927 | with self.assertRaises(TypeError): |
| 928 | pickle.dumps(BZ2Decompressor(), proto) |
| 929 | |
| 930 | def testDecompressorChunksMaxsize(self): |
| 931 | bzd = BZ2Decompressor() |
nothing calls this directly
no test coverage detected