scottrogowski / code2flow

Pretty good call graphs for dynamic languages
MIT License
3.92k stars 286 forks source link

Python: function calls by bind or function argument of a function not seen by code2flow #93

Open Armag67 opened 7 months ago

Armag67 commented 7 months ago

Hello, On Python (3.11 with tkinter), code2flow don't see function calls in event bindings like:

self.bind_class("Entry", "<Button-3><ButtonRelease-3>", self.show_textmenu)

for my show_textmenu(self, event) function,

neither functions calls as arguments of another function like:

getVar = my_imported_function(othersargs, on_progress_callback=self.progress_Check)

for my progress_Check(args) function.

But all works in my code...