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 april
Recipients
Date 2006-05-22.16:08:41
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=747439

There was generally a 5-10% speed improvement for using a
string.  This is because the cost of recreating the string
by appending was less than the cost of creating an array,
appending the the array, and then joining it back together.

I would recommend trying leaving it as a string, but
changing this:
if readsize > self.min_readsize:
  self.min_readsize = int(self.min_readsize * 1.25)

(or some kind of scaling factor)
History
Date User Action Args
2007-08-23 15:43:49adminlinkissue1281707 messages
2007-08-23 15:43:49admincreate