Message255642
>>> import importlib.util
>>> importlib.util.resolve_name(".submodule", None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/proj/python/cpython/Lib/importlib/util.py", line 26, in resolve_name
'(no leading dot)'.format(name))
ValueError: '.submodule' is not a relative name (no leading dot)
This message sounds like nonsense. Perhaps the it should say something like:
'.submodule' should be an absolute name (no leading dot)
or:
relative import of '.submodule' not allowed outside of a package |
|
Date |
User |
Action |
Args |
2015-12-01 05:31:34 | martin.panter | set | recipients:
+ martin.panter |
2015-12-01 05:31:34 | martin.panter | set | messageid: <1448947894.1.0.971575571341.issue25771@psf.upfronthosting.co.za> |
2015-12-01 05:31:34 | martin.panter | link | issue25771 messages |
2015-12-01 05:31:33 | martin.panter | create | |
|