Commit 89c93887 authored by Stefan Behnel's avatar Stefan Behnel

test update

parent 39d42792
......@@ -5,6 +5,9 @@ __doc__ = """
3
>>> test( (1,2,3) )
3
>>> testnonsense()
Traceback (most recent call last):
TypeError: 'int' object is not iterable
"""
def test1(t):
......@@ -18,3 +21,7 @@ def test3(t):
def test(t):
t,t,t = t
return t
def testnonsense():
t,t,t = 1*2
return t
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