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 ncoghlan
Recipients brett.cannon, metolone, ncoghlan
Date 2012-08-31.12:33:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346416418.77.0.288978221113.issue15828@psf.upfronthosting.co.za>
In-reply-to
Content
An even easier reproducer:

>>> import imp
[93559 refs]
>>> details = imp.find_module("_elementtree")
[93572 refs]
>>> mod = imp.load_module('_elementtree', *details)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/ncoghlan/devel/py3k/Lib/imp.py", line 171, in load_module
    raise ImportError(msg, name=name)
ImportError: Don't know how to import _elementtree (type code 3
[93572 refs]
History
Date User Action Args
2012-08-31 12:33:38ncoghlansetrecipients: + ncoghlan, brett.cannon, metolone
2012-08-31 12:33:38ncoghlansetmessageid: <1346416418.77.0.288978221113.issue15828@psf.upfronthosting.co.za>
2012-08-31 12:33:38ncoghlanlinkissue15828 messages
2012-08-31 12:33:38ncoghlancreate