I want to follow what import foo
does. When I try to step into it, it says <frame not available>
in the debugger.
I have seen this other question but it is asking for stepping into a Python C function.
I want to follow what import foo
does. When I try to step into it, it says <frame not available>
in the debugger.
I have seen this other question but it is asking for stepping into a Python C function.
Use
importlib.import_module
instead.