From: Victor Stinner Date: Fri, 1 Jul 2011 11:47:03 +0000 (+0200) Subject: (merge 3.2) test_os: remove now useless TemporaryFileTests testcase X-Git-Tag: v3.3.0a1~1991 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=59929d9877e2968c38e672f14cd92aa63bfe9c4b;p=thirdparty%2FPython%2Fcpython.git (merge 3.2) test_os: remove now useless TemporaryFileTests testcase TemporaryFileTests has tests for os.tempnam() and os.tmpfile(), functions removed from Python 3. Move fdopen() tests to the FileTests testcase to test fdopen() on a file descriptor, not on a directory descriptor (which raises an error on Windows). --- 59929d9877e2968c38e672f14cd92aa63bfe9c4b diff --cc Lib/test/test_os.py index 98a21298fd18,efa28ea952b1..72f1c1bc2899 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@@ -1630,9 -1240,6 +1526,8 @@@ def test_main() PidTests, LoginTests, LinkTests, + TestSendfile, + ProgramPriorityTests, - TemporaryFileTests, ) if __name__ == "__main__":