From: Victor Stinner Date: Tue, 25 Mar 2014 17:19:17 +0000 (+0100) Subject: Issue #21058: fix typo in a comment. Patch written by Vajrasky Kok. X-Git-Tag: v3.4.1rc1~179 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87d13ea56d58851c35952aa8dac24168fceac15a;p=thirdparty%2FPython%2Fcpython.git Issue #21058: fix typo in a comment. Patch written by Vajrasky Kok. --- diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index fda914e2a3c7..b23c19fad61a 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -760,7 +760,7 @@ class TestNamedTemporaryFile(BaseTestCase): self.assertRaises(ValueError, use_closed) def test_no_leak_fd(self): - # Issue #21058: don't leak file descriptor when io.pen() fails + # Issue #21058: don't leak file descriptor when io.open() fails closed = [] def close(fd): closed.append(fd)