From: Victor Stinner Date: Tue, 6 Nov 2012 23:57:26 +0000 (+0100) Subject: Remove outdated comment X-Git-Tag: v3.4.0a1~2061 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99dd8b577b3f5073ff8d9dce09a510c34ef9f72f;p=thirdparty%2FPython%2Fcpython.git Remove outdated comment --- diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 2d3a8f37afc7..77152b3ec909 100644 --- a/Lib/test/test_cmd_line_script.py +++ b/Lib/test/test_cmd_line_script.py @@ -366,7 +366,6 @@ class CmdLineTest(unittest.TestCase): @unittest.skipUnless(support.TESTFN_NONASCII, 'need support.TESTFN_NONASCII') def test_non_ascii(self): # Issue #16218 - # non-ascii filename encodable to cp1252, cp932, latin1 and utf8 source = 'print(ascii(__file__))\n' script_name = _make_test_script(os.curdir, support.TESTFN_NONASCII, source) self.addCleanup(support.unlink, script_name)