Files
openide/python/testData/refactoring/changeSignature/addDefaultParamBeforeAnotherDefault.before.py
Mikhail Golubev d8b871aec1 PY-24607 PY-24602 Add tests on other older problems with Change Signature
All these issues have been resolved in the new version of
PyChangeSignatureUsageProcessor
2017-06-08 14:55:12 +03:00

8 lines
82 B
Python

def foo(a, b=None):
pass
foo("a", "b")
foo("a")
foo("a", b="b")
foo("a", None)