This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients arjennienhuis, benjamin.peterson, christian.heimes, eric.smith, exarkun, ezio.melotti, glyph, gvanrossum, loewis, martin.panter, pitrou, serhiy.storchaka, terry.reedy, uau, vstinner
Date 2013-01-22.21:46:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwbdHP=7QsewMZzfagv=xHs88Xjq7PnJxb+mGaoQmsWPcg@mail.gmail.com>
In-reply-to <1358877952.23.0.717933888881.issue3982@psf.upfronthosting.co.za>
Content
2013/1/22 Guido van Rossum <report@bugs.python.org>:
> Twisted still would like to see this.

Sorry, but this argument doesn't convince me. A better argument is
that bytes+bytes+...+bytes is inefficient: it creates a lot of
temporary objects instead of computing the final size directly, or
using realloc.

str%args and str.format() uses realloc() and overallocates its
internal buffer to avoid too many calls to realloc().
History
Date User Action Args
2013-01-22 21:46:29vstinnersetrecipients: + vstinner, gvanrossum, loewis, terry.reedy, exarkun, pitrou, eric.smith, christian.heimes, benjamin.peterson, glyph, ezio.melotti, arjennienhuis, uau, martin.panter, serhiy.storchaka
2013-01-22 21:46:29vstinnerlinkissue3982 messages
2013-01-22 21:46:29vstinnercreate