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 pitrou
Recipients amaury.forgeotdarc, asvetlov, brian.curtin, eric.smith, ggenellina, giampaolo.rodola, jafo, jaraco, lemburg, loewis, nnorwitz, pitrou, r.david.murray, ssbarnea, swarren
Date 2010-07-09.13:10:43
SpamBayes Score 0.04981366
Marked as misclassified No
Message-id <1278681034.3178.4.camel@localhost.localdomain>
In-reply-to <1278680115.34.0.794435185402.issue1578269@psf.upfronthosting.co.za>
Content
> Hm, the patch could be more "pythonic". Something like:
> 
> symlink_exception = (AttributeError,)
> try:
>     symlink_exception += (NotImplementedError, WindowsError)
> except NameError:
>     pass

Probably better as:

symlink_exception = (AttributeError, NotImplementedError)
try:
    symlink_exception += (WindowsError,)
except NameError:
    pass
History
Date User Action Args
2010-07-09 13:10:50pitrousetrecipients: + pitrou, lemburg, loewis, nnorwitz, jafo, amaury.forgeotdarc, jaraco, ggenellina, eric.smith, giampaolo.rodola, swarren, r.david.murray, ssbarnea, brian.curtin, asvetlov
2010-07-09 13:10:43pitroulinkissue1578269 messages
2010-07-09 13:10:43pitroucreate