commit | b314ce91d3642aad09da657810828ef5675ec326 | [log] [tgz] |
---|---|---|
author | Marc-André Lemburg <mal@egenix.com> | Fri Jul 23 16:14:57 2004 +0000 |
committer | Marc-André Lemburg <mal@egenix.com> | Fri Jul 23 16:14:57 2004 +0000 |
tree | 70593b889e642c3959104e05dda523531a15cca2 | |
parent | d25c650461b6010ad66768e4495e780683745ced [diff] [blame] |
Add news item for u'%s' change.
diff --git a/Misc/NEWS b/Misc/NEWS index acb6f62..55f5a14 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ 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.