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 larry
Recipients larry
Date 2009-04-06.08:41:42
SpamBayes Score 1.8983756e-07
Marked as misclassified No
Message-id <1239007305.41.0.910418406517.issue5708@psf.upfronthosting.co.za>
In-reply-to
Content
Two minor tweaks to unicode_repeat:
* If the number of repeats (len) is < 1, we're always going to return
the empty Unicode string.  So I incr and return unicode_empty.
* The current code has "if (done < nchars)" around the first copy.  A
little data-flow analysis of the code will show you that done is always
0 and nchars is always >= str->length.  So the check is
unnecessary--we're always going to do that first copy.  I removed the if
and set done to str->length directly.

Hope I got it right!
History
Date User Action Args
2009-04-06 08:41:45larrysetrecipients: + larry
2009-04-06 08:41:45larrysetmessageid: <1239007305.41.0.910418406517.issue5708@psf.upfronthosting.co.za>
2009-04-06 08:41:43larrylinkissue5708 messages
2009-04-06 08:41:43larrycreate