summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2004-07-23 16:14:57 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2004-07-23 16:14:57 (GMT)
commitb314ce91d3642aad09da657810828ef5675ec326 (patch)
tree70593b889e642c3959104e05dda523531a15cca2
parentd25c650461b6010ad66768e4495e780683745ced (diff)
downloadcpython-b314ce91d3642aad09da657810828ef5675ec326.zip
cpython-b314ce91d3642aad09da657810828ef5675ec326.tar.gz
cpython-b314ce91d3642aad09da657810828ef5675ec326.tar.bz2
Add news item for u'%s' change.
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index acb6f62..55f5a14 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.4 alpha 2?
Core and builtins
-----------------
+- u'%s' % obj will now try obj.__unicode__() first and fallback to
+ obj.__str__() if no __unicode__ method can be found.
+
- Patch #550732: Add PyArg_VaParseTupleAndKeywords(). Analogous to
PyArg_VaParse(). Both are now documented. Thanks Greg Chapman.