I
Iuri
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!
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!