Hi,
I am using Pydev on Eclipse to write python code. I am new to Pydev and to Eclipse. I love the feature where by I can use rightClick -> Refactoring -> Rename... to rename a variable.
I was wondering if there is something similar to change a function everywhere in the project, if I change its definition.
For example, suppose I initially have:
def myFunction(a, b):
body of the function
return blah
I use this function in other files of the project. Say,
thisVar = myFunction(a, b)
Now I feel the need to change the function definition to account for an additional parameter.
def myFunction(a, b, c):
body of the function
return blah
Is there something in eclipse or pydev such that it will automatically change
thisVar = myFunction(a, b)
to
thisVar = myFunction(a, b, c)
Thanks for your help.