Commit d88465bb authored by Stefan Behnel's avatar Stefan Behnel

Py3.3 doctest fix

parent 060472a8
...@@ -28,9 +28,9 @@ StopIteration ...@@ -28,9 +28,9 @@ StopIteration
if IS_PY3: if IS_PY3:
__doc__ += """ __doc__ += """
>>> next(123) >>> next(123) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
TypeError: int object is not an iterator TypeError: ...int... object is not an iterator
""" """
def test_next_not_iterable(it): def test_next_not_iterable(it):
......
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