mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
Replace IOError with OSError (#16715)
This commit is contained in:
parent
16bdd4120d
commit
f7a17b48d7
121 changed files with 381 additions and 386 deletions
|
@ -3183,13 +3183,13 @@ class ShutdownTest(BaseTest):
|
|||
self.assertEqual('0 - release', self.called[-1])
|
||||
|
||||
def test_with_ioerror_in_acquire(self):
|
||||
self._test_with_failure_in_method('acquire', IOError)
|
||||
self._test_with_failure_in_method('acquire', OSError)
|
||||
|
||||
def test_with_ioerror_in_flush(self):
|
||||
self._test_with_failure_in_method('flush', IOError)
|
||||
self._test_with_failure_in_method('flush', OSError)
|
||||
|
||||
def test_with_ioerror_in_close(self):
|
||||
self._test_with_failure_in_method('close', IOError)
|
||||
self._test_with_failure_in_method('close', OSError)
|
||||
|
||||
def test_with_valueerror_in_acquire(self):
|
||||
self._test_with_failure_in_method('acquire', ValueError)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue