summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-07-02 18:19:47 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-07-02 18:19:47 (GMT)
commit7d6b01417f5e97e122c4fe2237ebd24ea3437d52 (patch)
treef3e405f25c572084e711555e7fb4cf8292746fcd /Misc
parentf92146938377651100db8a00bb3356ceff760037 (diff)
downloadcpython-7d6b01417f5e97e122c4fe2237ebd24ea3437d52.zip
cpython-7d6b01417f5e97e122c4fe2237ebd24ea3437d52.tar.gz
cpython-7d6b01417f5e97e122c4fe2237ebd24ea3437d52.tar.bz2
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 ........
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 4870c6a..0347cc3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ Core and Builtins
- 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.