Menu

#553 refactor function calls to use named arguments

open
nobody
None
5
2011-09-20
2011-09-20
Anonymous
No

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)

Discussion

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.