Commit 87ef0bbc authored by Travis Hance's avatar Travis Hance

uncommented some of the eval tests that pass

parent 168527bd
......@@ -58,14 +58,14 @@ def func():
eval("[i for i in range(5)]")
#j = 24
#def inner():
# return j
#print eval("inner()")
j = 24
def inner():
return j
print 'j', eval("inner()")
func()
print i
#print eval("(lambda k : k+2)(3)")
print eval("(lambda k : k+2)(3)")
l = 100
print eval("(lambda k : l+2)(3)")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment