twasbrillig
twasbrillig

Reputation: 18921

Can I step into Python library code?

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.

Upvotes: 8

Views: 3500

Answers (2)

Martijn Pieters
Martijn Pieters

Reputation: 1125058

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.

Upvotes: 7

John Zwinck
John Zwinck

Reputation: 249642

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

Upvotes: 10

Related Questions