Re: [Python-Dev] r84329 - python/branches/py3k/Lib/importlib/_bootstrap.py
On Thu, 26 Aug 2010 23:07:13 +0200 (CEST) brett.cannon <python-checkins@python.org> wrote:
Author: brett.cannon Date: Thu Aug 26 23:07:13 2010 New Revision: 84329
Log: OSError is the exception raised when one tries to create a directory that already exists, not IOError.
It's probably simpler to catch all of them at once using EnvironmentError. (and see PEP 3151 :-)) Regards Antoine.
On Fri, Aug 27, 2010 at 10:32, Antoine Pitrou <solipsis@pitrou.net> wrote:
On Thu, 26 Aug 2010 23:07:13 +0200 (CEST) brett.cannon <python-checkins@python.org> wrote:
Author: brett.cannon Date: Thu Aug 26 23:07:13 2010 New Revision: 84329
Log: OSError is the exception raised when one tries to create a directory that already exists, not IOError.
It's probably simpler to catch all of them at once using EnvironmentError.
It would be less code, but I like the clear separation.
(and see PEP 3151 :-))
Oh, I want PEP 3151 as this little bit of code has shown me. As soon as the PEP goes in I will clean this code up.
participants (2)
-
Antoine Pitrou -
Brett Cannon