diff options
Diffstat (limited to 'tests/run/tuple.pyx')
-rw-r--r-- | tests/run/tuple.pyx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run/tuple.pyx b/tests/run/tuple.pyx index 797fb43dc..5e0dbe784 100644 --- a/tests/run/tuple.pyx +++ b/tests/run/tuple.pyx @@ -117,9 +117,9 @@ def tuple_of_args_tuple(*args): @cython.test_fail_if_path_exists('//SimpleCallNode//SimpleCallNode') def tuple_of_object(ob): """ - >>> tuple(type(1)) + >>> tuple(type(1)) # doctest: +ELLIPSIS Traceback (most recent call last): - TypeError: 'type' object is not iterable + TypeError: ...type... >>> sorted(tuple(set([1, 2, 3]))) [1, 2, 3] """ |