diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-05-05 05:36:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-05-05 05:36:48 (GMT) |
commit | 2cfe36828342e16cd274b968736a01aed5c49557 (patch) | |
tree | 8ee8bf38509e6abf06a98d561973d3a3eccee01d /Misc | |
parent | 432b42aa4c31fd473690ffeee446dcd493f8a8aa (diff) | |
download | cpython-2cfe36828342e16cd274b968736a01aed5c49557.zip cpython-2cfe36828342e16cd274b968736a01aed5c49557.tar.gz cpython-2cfe36828342e16cd274b968736a01aed5c49557.tar.bz2 |
Make unicode.join() work nice with iterators. This also required a change
to string.join(), so that when the latter figures out in midstream that
it really needs unicode.join() instead, unicode.join() can actually get
all the sequence elements (i.e., there's no guarantee that the sequence
passed to string.join() can be iterated over *again* by unicode.join(),
so string.join() must not pass on the original sequence object anymore).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ Core reduce() string.join() tuple() - XXX TODO unicode.join() + unicode.join() XXX TODO zip() XXX TODO 'x in y' |