diff options
| author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-25 16:47:37 +0200 | 
|---|---|---|
| committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-25 16:47:37 +0200 | 
| commit | f7a17b48d748e1835bcf9df86fb7fb318bb020f8 (patch) | |
| tree | 403d91c57f72d6e538ce09a8037bd658bc619760 /Lib/test/test_zipfile.py | |
| parent | 16bdd4120d8452e8e04b124bcdd116608c5166b0 (diff) | |
| download | cpython-git-f7a17b48d748e1835bcf9df86fb7fb318bb020f8.tar.gz | |
Replace IOError with OSError (#16715)
Diffstat (limited to 'Lib/test/test_zipfile.py')
| -rw-r--r-- | Lib/test/test_zipfile.py | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py index ac6983f135..369cb4feb1 100644 --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py @@ -929,7 +929,7 @@ class OtherTests(unittest.TestCase):          try:              with zipfile.ZipFile(TESTFN, 'a') as zf:                  zf.writestr(filename, content) -        except IOError: +        except OSError:              self.fail('Could not append data to a non-existent zip file.')          self.assertTrue(os.path.exists(TESTFN)) @@ -995,7 +995,7 @@ class OtherTests(unittest.TestCase):          chk = zipfile.is_zipfile(fp)          self.assertTrue(chk) -    def test_non_existent_file_raises_IOError(self): +    def test_non_existent_file_raises_OSError(self):          # make sure we don't raise an AttributeError when a partially-constructed          # ZipFile instance is finalized; this tests for regression on SF tracker          # bug #403871. @@ -1007,7 +1007,7 @@ class OtherTests(unittest.TestCase):          # it is ignored, but the user should be sufficiently annoyed by          # the message on the output that regression will be noticed          # quickly. -        self.assertRaises(IOError, zipfile.ZipFile, TESTFN) +        self.assertRaises(OSError, zipfile.ZipFile, TESTFN)      def test_empty_file_raises_BadZipFile(self):          f = open(TESTFN, 'w') @@ -1281,7 +1281,7 @@ class OtherTests(unittest.TestCase):      def test_open_empty_file(self):          # Issue 1710703: Check that opening a file with less than 22 bytes          # raises a BadZipFile exception (rather than the previously unhelpful -        # IOError) +        # OSError)          f = open(TESTFN, 'w')          f.close()          self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN, 'r')  | 
