In PyCharm, there is a feature called call hierarchy
(under Navigate -> call hierarchy) which shows the function call graph.
the graph contains too much information.
I want to filter it only by the functions I wrote, not internal python functions. how should I do this? I dint find thee option.
Asked
Active
Viewed 33 times
1

ggcarmi
- 458
- 4
- 17
1 Answers
1
I'm using PyCharm 2023.1 Opening the call hierarchy with scope of "All" shows EVERYTHING. If you configure a new scope (from within the call hierarchy window), you can include the folders you want, but most importantly, you exclude recursively the "External Dependencies". I've been able to get a clean call list this way.

bobwirka
- 324
- 1
- 6
- 10