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 gregory.p.smith
Recipients gregory.p.smith
Date 2012-05-05.01:14:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336180448.33.0.0155133571187.issue14726@psf.upfronthosting.co.za>
In-reply-to
Content
Lib/email/*.py are fond of using

EMPTYSTRING = ''

and within the code:

    EMPTYSTRING.join(...)

instead of just writing:

    ''.join(...)

They should just do the latter.  It'll avoid a name lookup and look less silly to people reading the code.  ;)
History
Date User Action Args
2012-05-05 01:14:08gregory.p.smithsetrecipients: + gregory.p.smith
2012-05-05 01:14:08gregory.p.smithsetmessageid: <1336180448.33.0.0155133571187.issue14726@psf.upfronthosting.co.za>
2012-05-05 01:14:07gregory.p.smithlinkissue14726 messages
2012-05-05 01:14:07gregory.p.smithcreate