diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 18:57:55 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 18:57:55 +0300 |
commit | 34c9be7ebdc135e38914d161b028f5b56bf00642 (patch) | |
tree | d44448c5854bc6112ba2a35dc6604e65d64414eb | |
parent | b3c30d91143be72a05a02b9eb5f7b2e670450288 (diff) | |
download | cpython-git-34c9be7ebdc135e38914d161b028f5b56bf00642.tar.gz |
Issue #23811: Add missing newline to the PyCompileError error message.
Patch by Alex Shkop.
-rw-r--r-- | Lib/py_compile.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Lib/py_compile.py b/Lib/py_compile.py index 1277b93ea5..f65eeaf620 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -178,7 +178,7 @@ def main(args=None): except PyCompileError as error: # return value to indicate at least one failure rv = 1 - sys.stderr.write(error.msg) + sys.stderr.write("%s\n" % error.msg) return rv if __name__ == "__main__": @@ -29,6 +29,9 @@ Core and Builtins Library ------- +- Issue #23811: Add missing newline to the PyCompileError error message. + Patch by Alex Shkop. + - Issue #17898: Fix exception in gettext.py when parsing certain plural forms. - Issue #22982: Improve BOM handling when seeking to multiple positions of |