fix lambda issues

This commit is contained in:
Dave Halter
2014-08-06 12:40:08 +02:00
parent e3bb0ccc2e
commit 23c39eff9a
4 changed files with 14 additions and 13 deletions

View File

@@ -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)