From: Brian Curtin Date: Sun, 31 Oct 2010 00:00:30 +0000 (+0000) Subject: Merged revisions 86000 via svnmerge from X-Git-Tag: v2.7.1rc1~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f62ae822d4badf3511cf7e6e9ecace6a7df2cddc;p=python 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 ........ --- diff --git a/Lib/test/test_fileio.py b/Lib/test/test_fileio.py index 2760b733c5..cb6ec8e020 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 \