mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix buildbot failure following 97a5590b9291
This commit is contained in:
parent
16a0a0b0a0
commit
7b50c2c6ae
1 changed files with 3 additions and 3 deletions
|
@ -237,14 +237,14 @@ class MmapTests(unittest.TestCase):
|
|||
prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE)
|
||||
f.close()
|
||||
|
||||
# Try writting without PROT_WRITE
|
||||
# Try writing with PROT_EXEC and without PROT_WRITE
|
||||
prot = mmap.PROT_READ | getattr(mmap, 'PROT_EXEC', 0)
|
||||
with open(TESTFN, "r+b") as f:
|
||||
m = mmap.mmap(f.fileno(), mapsize, prot=~mmap.PROT_WRITE)
|
||||
m = mmap.mmap(f.fileno(), mapsize, prot=prot)
|
||||
self.assertRaises(TypeError, m.write, b"abcdef")
|
||||
self.assertRaises(TypeError, m.write_byte, 0)
|
||||
m.close()
|
||||
|
||||
|
||||
def test_bad_file_desc(self):
|
||||
# Try opening a bad file descriptor...
|
||||
self.assertRaises(mmap.error, mmap.mmap, -2, 4096)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue