Can I step into Python library code?

前提是你 提交于 2020-08-24 07:33:05

问题


When I run my Python debugger, I can step into functions that I write. But if I try to step into a library function like os.mkdir("folder"), for example, it "steps over" it instead. Is there a way to step into builtin library functions to see what Python is doing under the hood?

Ideally there'd be a way to do this in PyPy so that you could keep drilling down into Python code.


回答1:


pdb, the Python Debugger, cannot step into C functions like os.mkdir, but gdb can. Try this:

gdb --args python whatever.py ...

Then:

start
break posix_mkdir
continue

You should see it stop inside Python's implementation of os.mkdir, as detailed here: https://stackoverflow.com/a/16617835/4323




回答2:


os.mkdir() is implemented in C code and pdb cannot step into that function.

You are limited to debugging pure Python code only; it doesn't matter if that code is part of the standard library or not. You can step into the shutil module, or os.path just fine, for example.

os.mkdir() has to call into native code because it interacts with the OS; even PyPy has to defer to the underlying (host-Python) os.mkdir() call to handle that part, so you cannot step into it with pdb even in PyPy. In fact, just like in CPython, that part of the standard library is part of the RPython runtime and not seen as 'native Python code' by PyPy either, just like the built-in types are part of the runtime environment.

You could run the PyPy interpreter untranslated (so not statically compile the RPython code but have Python run the PyPy interpreter directly), but that'll only give you access to the RPython code paths, not the os.mkdir() C code.



来源:https://stackoverflow.com/questions/26198847/can-i-step-into-python-library-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!