(self)
| 942 | |
| 943 | @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems") |
| 944 | def test_around_2GB(self): |
| 945 | self._test_around_boundary(_2G) |
| 946 | |
| 947 | @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems") |
| 948 | def test_around_4GB(self): |
nothing calls this directly
no test coverage detected