imp.load_module error in Python 3.3

Iuri iurisilvio at gmail.com
Mon Feb 11 10:29:27 EST 2013


I want to load a file with an invalid module name (with a dash).

    filename = '...' # something like /my/path/to/ejtp-crypto
    with open(filename, 'rb') as fp:
        my_module = imp.load_module('crypto', fp, 'ejtp-crypto', ('.py',
'rb', imp.PY_SOURCE))

It works to all Python >= 2.5, except 3.3. Some behaviour changed to break
it or is it a regression bug?

I know imp.load_module is deprecated in 3.3, but I didn't found anything
related with behaviour changes.

Also, I didn't understanded how exactly change my code to use importlib,
can you help me with this change?

Thanks!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20130211/467f1405/attachment.html>


More information about the Python-list mailing list