On Sat, Oct 1, 2011 at 7:17 PM, Victor Stinner
<[email protected]> wrote:
> I'm writing this email to ask you if this type solves a real issue, or if we
> can just prove the super-fast str.join(list of str).
I'm -1 on hacking += to be fast again because having the two loops
below perform wildly differently is *very* surprising to me:
s = ''
for x in loops:
s += x
s = ''
for x in loops:
s = s + x
Schiavo
Simon
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe:
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com