Commit c820c9aa authored by Stefan Behnel's avatar Stefan Behnel

fix test that was broken after merge

parent 83c9318b
__doc__ = u'''
>>> no_cdef()
>>> with_cdef()
<<<<<<< local
>>> test_list(range(11), -2, None)
=======
>>> test_list(list(range(11)), -2, None)
>>>>>>> other
[0, 1, 2, 3, 4, 5, 6, 7, 8, None, 10]
<<<<<<< local
>>> test_list(range(11), "invalid index", None)
=======
>>> test_list(list(range(11)), "invalid index", None) #doctest: +ELLIPSIS
>>>>>>> other
Traceback (most recent call last):
...
TypeError: list indices must be integers...
......
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