summaryrefslogtreecommitdiff
path: root/tests/run/cdef_setitem_T284.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/cdef_setitem_T284.pyx')
-rw-r--r--tests/run/cdef_setitem_T284.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run/cdef_setitem_T284.pyx b/tests/run/cdef_setitem_T284.pyx
index 389b8c409..871afb892 100644
--- a/tests/run/cdef_setitem_T284.pyx
+++ b/tests/run/cdef_setitem_T284.pyx
@@ -24,9 +24,9 @@ def with_external_list(list L):
"""
>>> with_external_list([1,2,3])
[1, -10, 3]
- >>> with_external_list(None)
+ >>> with_external_list(None) # doctest: +ELLIPSIS
Traceback (most recent call last):
- TypeError: 'NoneType' object is not subscriptable
+ TypeError: 'NoneType' object ...
"""
ob = 1L
L[ob] = -10