Commit 2c7e7a5e authored by Kevin Modzelewski's avatar Kevin Modzelewski

Add some pyston tuple-parsing tests

parent 923e960e
......@@ -78,3 +78,6 @@ try:
finally:
pass
# shutil.rmtree("testsite")
print
print "PASSED"
# Some parsing tests:
print ((1, 2),)
print (1, 2, 3)
print (1,2,)
print (1,)
t = (1, "h")
print t, str(t), repr(t)
if 1:
......
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