Reputation: 2005
I am using pycharm to debug python code written by different authors.
The code is functional, there are no classes in use.
I was looking for a function usage and I have found out that name of the function is repeated on different modules of the project with different results.
It works because the use they import the file file.py and then reference the funciton as the following:
import file
(...)
aux = file.function_name(parameters)
Is there a way to find function name coincidences?
Upvotes: 1
Views: 407
Reputation: 4572
Assuming you know the name of the function in question:
You can see my example I have the same function name in two different modules.
Upvotes: 1