Replace mmap.error with OSError, #16705

This commit is contained in:
Andrew Svetlov 2012-12-17 22:55:31 +02:00
parent 6d8a122b9c
commit 6eda46de99
1 changed files with 2 additions and 2 deletions

View File

@ -245,7 +245,7 @@ class MmapTests(unittest.TestCase):
def test_bad_file_desc(self): def test_bad_file_desc(self):
# Try opening a bad file descriptor... # Try opening a bad file descriptor...
self.assertRaises(mmap.error, mmap.mmap, -2, 4096) self.assertRaises(OSError, mmap.mmap, -2, 4096)
def test_tougher_find(self): def test_tougher_find(self):
# Do a tougher .find() test. SF bug 515943 pointed out that, in 2.2, # Do a tougher .find() test. SF bug 515943 pointed out that, in 2.2,
@ -673,7 +673,7 @@ class MmapTests(unittest.TestCase):
# parameters to _get_osfhandle. # parameters to _get_osfhandle.
s = socket.socket() s = socket.socket()
try: try:
with self.assertRaises(mmap.error): with self.assertRaises(OSError):
m = mmap.mmap(s.fileno(), 10) m = mmap.mmap(s.fileno(), 10)
finally: finally:
s.close() s.close()