diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-01-30 11:05:48 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-01-30 11:05:48 (GMT) |
commit | 16a060d1a2ddd888b2549691ebd066d06f0dcb82 (patch) | |
tree | c2a1b4065d7b2e25c89f30ee80debadb2a481f06 /Lib/lib2to3/tests/test_parser.py | |
parent | 93f562c4f9a751034616068468e7dc2cfd022275 (diff) | |
download | cpython-16a060d1a2ddd888b2549691ebd066d06f0dcb82.zip cpython-16a060d1a2ddd888b2549691ebd066d06f0dcb82.tar.gz cpython-16a060d1a2ddd888b2549691ebd066d06f0dcb82.tar.bz2 |
Merged revisions 77846 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r77846 | martin.v.loewis | 2010-01-30 11:56:23 +0100 (Sa, 30 Jan 2010) | 13 lines
Merged revisions 77419,77435 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r77419 | benjamin.peterson | 2010-01-10 21:39:48 +0100 (So, 10 Jan 2010) | 1 line
enclose path in quotes to handle paths with spaces correctly #7666
........
r77435 | alexandre.vassalotti | 2010-01-12 01:36:54 +0100 (Di, 12 Jan 2010) | 2 lines
Issue #1967: Add fixer for dictionary views.
........
................
Diffstat (limited to 'Lib/lib2to3/tests/test_parser.py')
-rw-r--r-- | Lib/lib2to3/tests/test_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/tests/test_parser.py b/Lib/lib2to3/tests/test_parser.py index 7e649da..15b109e9 100644 --- a/Lib/lib2to3/tests/test_parser.py +++ b/Lib/lib2to3/tests/test_parser.py @@ -206,6 +206,6 @@ def diff(fn, result): finally: f.close() try: - return os.system("diff -u %s @" % fn) + return os.system("diff -u %r @" % fn) finally: os.remove("@") |