summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-07-02 18:16:45 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-07-02 18:16:45 (GMT)
commit753d16234f61dd4494a19e71a5fc196611ecbcf3 (patch)
treedc8708d1eb6c1f38fcf7709ad20e1c05ec57239f /Misc
parent1bf4765369d7a6d5f0a4ad616f8a887c8fc4af39 (diff)
downloadcpython-753d16234f61dd4494a19e71a5fc196611ecbcf3.zip
cpython-753d16234f61dd4494a19e71a5fc196611ecbcf3.tar.gz
cpython-753d16234f61dd4494a19e71a5fc196611ecbcf3.tar.bz2
when print() gets unicode arguments, sep and end should be unicode by default #4618
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b5c716a..88739ff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
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.