diff options
author | Marc-André Lemburg <mal@egenix.com> | 2004-07-23 16:14:57 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2004-07-23 16:14:57 (GMT) |
commit | b314ce91d3642aad09da657810828ef5675ec326 (patch) | |
tree | 70593b889e642c3959104e05dda523531a15cca2 | |
parent | d25c650461b6010ad66768e4495e780683745ced (diff) | |
download | cpython-b314ce91d3642aad09da657810828ef5675ec326.zip cpython-b314ce91d3642aad09da657810828ef5675ec326.tar.gz cpython-b314ce91d3642aad09da657810828ef5675ec326.tar.bz2 |
Add news item for u'%s' change.
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |