diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-11-05 09:28:42 +0200 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-11-05 09:28:42 +0200 |
commit | bcbf4036c9bd3ebaa86ad41a11b3c4bb1f81ae1d (patch) | |
tree | 97671f5d65704bc59877c10f1253ec284dc0ee92 | |
parent | 7529620a15939a5d4a4405aedb0a8bb17cc35d28 (diff) | |
download | cpython-git-bcbf4036c9bd3ebaa86ad41a11b3c4bb1f81ae1d.tar.gz |
Revome extra .py suffix
-rw-r--r-- | Lib/test/test_cmd_line_script.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 750cf440eb..a8472c03a4 100644 --- a/Lib/test/test_cmd_line_script.py +++ b/Lib/test/test_cmd_line_script.py @@ -366,7 +366,7 @@ class CmdLineTest(unittest.TestCase): def test_non_ascii(self): # Issue #16218 # non-ascii filename encodable to cp1252, cp932, latin1 and utf8 - filename = support.TESTFN + '\xa3.py' + filename = support.TESTFN + '\xa3' try: os.fsencode(filename) except UnicodeEncodeError: |