Commit 9506ee5a authored by Chris Toshok's avatar Chris Toshok

add ellipsis and str.index tests

parent 19b03043
print type(Ellipsis)
print type(Ellipsis).__base__
......@@ -127,3 +127,10 @@ test_just_funcs("abcde", 8)
import gc
for c in "hello world":
gc.collect()
print "hello world".index("world")
try:
print "hello world".index("goodbye")
except:
print "threw exception"
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