Files
openide/python/testData/callableArguments/file.py

7 lines
104 B
Python

spam = lambda eggs: eggs
spam_union = 1 if 42 != 42 else spam
spam(egg<caret>)
spam_union(egg<caret>)