refactor function calls to use named arguments
Brought to you by:
fabioz
For example:
def f(foo, bar):
return foo + bar
answer = f(3,4)
What I'm looking for is some way to highlight the function call in pydev and have it automatically refactored so that it reads:
answer = f(foo=3, bar=4)