diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2010-01-30 10:56:23 (GMT) |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2010-01-30 10:56:23 (GMT) |
| commit | a8e34b707c89d50fe236ce1e817ac53a3a036c25 (patch) | |
| tree | d47d80d0a496998344df33145c5c2907a774e429 /Lib/lib2to3/tests/test_parser.py | |
| parent | a36507c64cd8d299749c758503b0951070e202f8 (diff) | |
| download | cpython-a8e34b707c89d50fe236ce1e817ac53a3a036c25.zip cpython-a8e34b707c89d50fe236ce1e817ac53a3a036c25.tar.gz cpython-a8e34b707c89d50fe236ce1e817ac53a3a036c25.tar.bz2 | |
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 fb412d0..92fe522 100644 --- a/Lib/lib2to3/tests/test_parser.py +++ b/Lib/lib2to3/tests/test_parser.py @@ -209,6 +209,6 @@ def diff(fn, result, encoding): finally: f.close() try: - return os.system("diff -u %s @" % fn) + return os.system("diff -u %r @" % fn) finally: os.remove("@") |
