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.