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 Natim
Recipients Natim, alexis, eric.araujo, tarek
Date 2011-08-21.09:28:57
SpamBayes Score 2.5199904e-05
Marked as misclassified No
Message-id <1313918940.16.0.470781616879.issue12703@psf.upfronthosting.co.za>
In-reply-to
Content
It is exactly what explained Alexis.

The __import__ can failed in two case :

 - The module doesn't exist
 - There is a error in the module

With the previous behaviour, even if the module exist, the message was that it doesn't exists. And it was then not fast forward to guess where was the error.

With this new behaviour, if there is an __import__ error and the module file actually exists, then we raise the real exception problem from the module that we try to import.
History
Date User Action Args
2011-08-21 09:29:00Natimsetrecipients: + Natim, tarek, eric.araujo, alexis
2011-08-21 09:29:00Natimsetmessageid: <1313918940.16.0.470781616879.issue12703@psf.upfronthosting.co.za>
2011-08-21 09:28:58Natimlinkissue12703 messages
2011-08-21 09:28:57Natimcreate