]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Mark string.join() as done. Turns out string_join() works "for free" now,
authorTim Peters <tim.peters@gmail.com>
Sat, 5 May 2001 04:24:43 +0000 (04:24 +0000)
committerTim Peters <tim.peters@gmail.com>
Sat, 5 May 2001 04:24:43 +0000 (04:24 +0000)
because PySequence_Fast() started working for free as soon as
PySequence_Tuple() learned how to work with iterators.  For some reason
unicode.join() still doesn't work, though.

Misc/NEWS

index d838c0f690d1fc617752d890a14b225173dbe4ad..0d7857f1a5b1627c823f16195af719ac58b242ad 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,8 +23,9 @@ Core
     max()
     min()
     reduce()
-    XXX TODO string.join(), unicode.join()
+    string.join()
     tuple()
+    XXX TODO unicode.join()
     XXX TODO zip()
     XXX TODO 'x in y'