From f62ae822d4badf3511cf7e6e9ecace6a7df2cddc Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Sun, 31 Oct 2010 00:00:30 +0000 Subject: Merged revisions 86000 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86000 | brian.curtin | 2010-10-30 18:56:45 -0500 (Sat, 30 Oct 2010) | 2 lines Fix ResourceWarning about unclosed file ........ --- Lib/test/test_fileio.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_fileio.py b/Lib/test/test_fileio.py index 2760b73..cb6ec8e 100644 --- a/Lib/test/test_fileio.py +++ b/Lib/test/test_fileio.py @@ -263,7 +263,6 @@ class OtherFileTests(unittest.TestCase): # OS'es that don't support /dev/tty. pass else: - f = _FileIO("/dev/tty", "a") self.assertEquals(f.readable(), False) self.assertEquals(f.writable(), True) if sys.platform != "darwin" and \ -- cgit v0.12