From 05e782fc3b5f38a68a760e1044eab0b5db1d279a Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 19 Jan 2009 15:15:02 +0000 Subject: [PATCH] reenable the invalid fd test for fdopen --- Lib/test/test_os.py | 2 +- Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 737333413b..f7471e55b9 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -588,7 +588,7 @@ class Win32ErrorTests(unittest.TestCase): self.assertRaises(WindowsError, os.utime, support.TESTFN, 0) class TestInvalidFD(unittest.TestCase): - singles = ["fchdir", "dup", "fdatasync", "fstat", + singles = ["fchdir", "dup", "fdopen", "fdatasync", "fstat", "fstatvfs", "fsync", "tcgetpgrp", "ttyname"] #singles.append("close") #We omit close because it doesn'r raise an exception on some platforms diff --git a/Misc/NEWS b/Misc/NEWS index 592e1a508c..1eb8559d26 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,8 @@ What's New in Python 3.1 alpha 0 Core and Builtins ----------------- +- Issue #4991: os.fdopen now raises an OSError for invalid file descriptors. + - Issue #4838: When a module is deallocated, free the memory backing the optional module state data. -- 2.40.0