Merged revisions 73776 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73776 | benjamin.peterson | 2009-07-02 13:16:45 -0500 (Thu, 02 Jul 2009) | 1 line
when print() gets unicode arguments, sep and end should be unicode by default #4618
........
diff --git a/Misc/NEWS b/Misc/NEWS
index 4870c6a..0347cc3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@
- Issue #4547: When debugging a very large function, it was not always
possible to update the lineno attribute of the current frame.
+- 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.