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(): ...@@ -58,14 +58,14 @@ def func():
eval("[i for i in range(5)]") eval("[i for i in range(5)]")
#j = 24 j = 24
#def inner(): def inner():
# return j return j
#print eval("inner()") print 'j', eval("inner()")
func() func()
print i print i
#print eval("(lambda k : k+2)(3)") print eval("(lambda k : k+2)(3)")
l = 100 l = 100
print eval("(lambda k : l+2)(3)") 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