commit | 753d16234f61dd4494a19e71a5fc196611ecbcf3 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Jul 02 18:16:45 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Jul 02 18:16:45 2009 +0000 |
tree | dc8708d1eb6c1f38fcf7709ad20e1c05ec57239f | |
parent | 1bf4765369d7a6d5f0a4ad616f8a887c8fc4af39 [diff] |
when print() gets unicode arguments, sep and end should be unicode by default #4618
diff --git a/Misc/NEWS b/Misc/NEWS index b5c716a..88739ff 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins ----------------- +- Issue #4618: When unicode arguments are passed to print(), the default + separator and end should be unicode also. + - Issue #6119: Fixed a incorrect Py3k warning about order comparisons of builtin functions and methods.