(self)
| 914 | return f |
| 915 | |
| 916 | def test_large_offset(self): |
| 917 | with self._make_test_file(0x14FFFFFFF, b" ") as f: |
| 918 | with mmap.mmap(f.fileno(), 0, offset=0x140000000, access=mmap.ACCESS_READ) as m: |
| 919 | self.assertEqual(m[0xFFFFFFF], 32) |
| 920 | |
| 921 | def test_large_filesize(self): |
| 922 | with self._make_test_file(0x17FFFFFFF, b" ") as f: |
nothing calls this directly
no test coverage detected