ggcarmi
ggcarmi

Reputation: 468

how to config PyCharm so it will show only functions that i wrote in "call hierarchy" (and not internal python functions)?

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.

Upvotes: 1

Views: 377

Answers (1)

bobwirka
bobwirka

Reputation: 334

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.

Upvotes: 1

Related Questions