Merge pull request #5022 from yoff/python-split-lambdas

Python: Callable for lambdas
This commit is contained in:
Taus
2021-01-29 14:12:26 +01:00
committed by GitHub
4 changed files with 44 additions and 1 deletions

View File

@@ -249,3 +249,10 @@ def synth_arg_kwOverflow():
def synth_arg_kwUnpacked():
overflowCallee(**{"p": "42"})
def split_lambda(cond):
if cond:
pass
foo = lambda x: False
if cond:
pass