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, brian.curtin, cool-RR, eric.araujo, eric.snow, r.david.murray
Date 2011-07-20.22:26:25
SpamBayes Score 1.0431238e-05
Marked as misclassified No
Message-id <1311200785.89.0.641571794334.issue12583@psf.upfronthosting.co.za>
In-reply-to
Content
For the ImportWarning docs, there could stand to be more; patches welcome. =)

As for ImportError being postmortem on an error, that is not always true as plenty of people use the trick, e.g.:

try: import json
except ImportError: import simplejson as json

As for detecting circular imports, flagging it somehow might work, but directly analyzing the stack won't do since that is extremely costly on some VMs.
History
Date User Action Args
2011-07-20 22:26:25brett.cannonsetrecipients: + brett.cannon, eric.araujo, r.david.murray, brian.curtin, cool-RR, eric.snow
2011-07-20 22:26:25brett.cannonsetmessageid: <1311200785.89.0.641571794334.issue12583@psf.upfronthosting.co.za>
2011-07-20 22:26:25brett.cannonlinkissue12583 messages
2011-07-20 22:26:25brett.cannoncreate