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 brett.cannon
Recipients brett.cannon
Date 2011-10-24.19:16:50
SpamBayes Score 1.8364166e-06
Marked as misclassified No
Message-id <1319483811.65.0.194402902365.issue13257@psf.upfronthosting.co.za>
In-reply-to
Content
Importlib uses the errno module explicitly for properly checking OSError for EEXIST and IOError for EACCES. Thanks to PEP 3151, however, neither check is needed since those exceptions correspond to FileExistsError and PermissionError, respectively.

As long as posix.mkdir() uses the new exceptions, the entire need for errno goes away for the module, eliminating one more module required for bootstrapping.
History
Date User Action Args
2011-10-24 19:16:51brett.cannonsetrecipients: + brett.cannon
2011-10-24 19:16:51brett.cannonsetmessageid: <1319483811.65.0.194402902365.issue13257@psf.upfronthosting.co.za>
2011-10-24 19:16:51brett.cannonlinkissue13257 messages
2011-10-24 19:16:50brett.cannoncreate