Files
cpython/Objects
Tim Peters 05eba1fdc8 PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't do
much to reduce the size of the code, but greatly improves its clarity.
It's also quicker in what's probably the most common case (the argument
iterable is a list).  Against it, if the iterable isn't a list or a tuple,
a temp tuple is materialized containing the entire input sequence, and
that's a bigger temp memory burden.  Yawn.
2004-08-27 21:32:02 +00:00
..
2000-05-02 18:34:30 +00:00
2001-08-29 23:54:21 +00:00
2004-08-25 19:42:12 +00:00
2004-08-12 18:12:44 +00:00
2004-08-08 07:17:39 +00:00