diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-04 21:02:41 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-04 21:02:41 (GMT) |
commit | 0bb502dcac9c687201aa58632e3dcbee1ac1168c (patch) | |
tree | 989f6aeab00828e0c9d535ee0a82ecc51a27a7f3 /Lib/test/test_fileio.py | |
parent | ec80478967afc0cf4e600a48dfa633603c20ac0e (diff) | |
download | cpython-0bb502dcac9c687201aa58632e3dcbee1ac1168c.zip cpython-0bb502dcac9c687201aa58632e3dcbee1ac1168c.tar.gz cpython-0bb502dcac9c687201aa58632e3dcbee1ac1168c.tar.bz2 |
Merged revisions 84506 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84506 | antoine.pitrou | 2010-09-04 22:53:29 +0200 (sam., 04 sept. 2010) | 5 lines
Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file
descriptor is provided. Patch by Pascal Chambon.
........
Diffstat (limited to 'Lib/test/test_fileio.py')
-rw-r--r-- | Lib/test/test_fileio.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_fileio.py b/Lib/test/test_fileio.py index f89c542..2f299dc 100644 --- a/Lib/test/test_fileio.py +++ b/Lib/test/test_fileio.py @@ -313,6 +313,9 @@ class OtherFileTests(unittest.TestCase): def testInvalidFd(self): self.assertRaises(ValueError, _FileIO, -10) self.assertRaises(OSError, _FileIO, make_bad_fd()) + if sys.platform == 'win32': + import msvcrt + self.assertRaises(IOError, msvcrt.get_osfhandle, make_bad_fd()) def testBadModeArgument(self): # verify that we get a sensible error message for bad mode argument |