From ff1ce0f44f0c732fdffd24facb14e8a763a2fbf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Fri, 15 Sep 2000 06:57:26 +0000 Subject: [PATCH] Support \r in source files. Closes bug #101425. --- Lib/py_compile.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Lib/py_compile.py b/Lib/py_compile.py index c54d61b5f51..b4531096d71 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -48,6 +48,11 @@ def compile(file, cfile=None, dfile=None): except AttributeError: timestamp = long(os.stat(file)[8]) codestring = f.read() + # If parsing from a string, line breaks are \n (see parsetok.c:tok_nextc) + # Replace will return original string if pattern is not found, so + # we don't need to check whether it is found first. + codestring = codestring.replace("\r\n","\n") + codestring = codestring.replace("\r","\n") f.close() if codestring and codestring[-1] != '\n': codestring = codestring + '\n'