Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Is it possible to get the current function in a trace function?

+3
−0

I'm trying to subclass pdb to have a debugger that, in case of a call to a decorated function, can "step in" the decorated function directly and skip the decorator content altogether. A well-behaved decorator using @functools.wraps sets __wrapped__ attribute on the wrapper to point to the decorated function and inspect.unwrap can follow a chain of such decorators.

So, I need access to the function object, but the trace function gives me the frame only and I don't know how to get the function object out of it.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

1 answer

+4
−0

CPython only very recently started keeping a reference on frames to function objects internally, and that reference isn't exposed from inside Python.

There's an old PEP that would have defined a __function__ local, which, combined with the f_locals field on frame objects, probably would have done what you needed. Unfortunately, the PEP was rejected, and I don't see any current activity in the direction of exposing a frame's function object via any other means.

For limited cases, if you make various assumptions about what variables are named or what kind of functions get decorated, you can possibly bodge in something that will work some of the time by inspecting a parent frame's f_locals and f_globals and looking for a function object that matches what the current frame is doing. But a technique suitable for a general-purpose debugger is probably impossible.

You probably already know, but the Pdb class accepts a skip argument which allows the debugger to skip code in modules that match wildcards. Depending on which decorators you need to skip and how you structure your code, using this feature might be better for you than attempting to subclass Pdb.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »