Message10043

Author jeff.allen
Recipients jeff.allen
Date 2015-05-10.15:59:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1431273588.69.0.836437986019.issue2352@psf.upfronthosting.co.za>
In-reply-to
Content
_imp.find_module returns, for a Java built-in module, a type of C_BUILTIN (=6), but _imp.load_module is then unable to load it, claiming it does not exist.

>>> import sys, imp
>>> file, filename, descr = imp.find_module("_marshal")
>>> descr
('', '', 6)
>>> imp.load_module("_marshal", file, filename, descr)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named _marshal
>>> import _marshal
>>> sys.modules['_marshal']
<type '_marshal'>

With this and #1906 we could revert to the CPython version of test_importhooks.
History
Date User Action Args
2015-05-10 15:59:48jeff.allensetrecipients: + jeff.allen
2015-05-10 15:59:48jeff.allensetmessageid: <1431273588.69.0.836437986019.issue2352@psf.upfronthosting.co.za>
2015-05-10 15:59:48jeff.allenlinkissue2352 messages
2015-05-10 15:59:47jeff.allencreate