Tracking down where builtin function is being called from in Python

Viewed 92

When I cProfile a program I'm working on I see that I'm spending a lot of time making expensive zip calls. The code I've written isn't making these zip calls, so it must be in code that I'm bringing in from one of many libraries I've imported.

Is there a tool that will let me flag a function call, and be informed which functions called that function in Python?

3 Answers
Related