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 douglas
Recipients brett.cannon, douglas
Date 2008-03-17.20:53:28
SpamBayes Score 0.035694823
Marked as misclassified No
Message-id <1205787209.52.0.969676717832.issue2350@psf.upfronthosting.co.za>
In-reply-to
Content
I ran python through a debugger and found that the exceptions module is
imported automatically at load time.  Because of this, when "import
exceptions" is parsed, the module is already loaded, and PyImport_Import
is not called.  In order to correct this, we'll have to either catch
this at the AST, or just handle it in 2to3...
History
Date User Action Args
2008-03-17 20:53:29douglassetspambayes_score: 0.0356948 -> 0.035694823
recipients: + douglas, brett.cannon
2008-03-17 20:53:29douglassetspambayes_score: 0.0356948 -> 0.0356948
messageid: <1205787209.52.0.969676717832.issue2350@psf.upfronthosting.co.za>
2008-03-17 20:53:28douglaslinkissue2350 messages
2008-03-17 20:53:28douglascreate