(self)
| 3539 | e.restore() |
| 3540 | |
| 3541 | def test_global_ext1(self): |
| 3542 | self.produce_global_ext(0x00000001, pickle.EXT1) # smallest EXT1 code |
| 3543 | self.produce_global_ext(0x000000ff, pickle.EXT1) # largest EXT1 code |
| 3544 | |
| 3545 | def test_global_ext2(self): |
| 3546 | self.produce_global_ext(0x00000100, pickle.EXT2) # smallest EXT2 code |
nothing calls this directly
no test coverage detected