mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
fix lambda issues
This commit is contained in:
@@ -96,11 +96,13 @@ def other(a):
|
||||
return recursion2(a)
|
||||
|
||||
def recursion2(a):
|
||||
if a:
|
||||
if random.choice([0, 1]):
|
||||
return other(a)
|
||||
else:
|
||||
return recursion2("")
|
||||
return a
|
||||
if random.choice([0, 1]):
|
||||
return recursion2("")
|
||||
else:
|
||||
return a
|
||||
|
||||
#? int() str()
|
||||
recursion2(1)
|
||||
|
||||
Reference in New Issue
Block a user