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.pyx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/run/cdef_setitem_T284.pyx b/tests/run/cdef_setitem_T284.pyx
index 2c885d5be..871afb892 100644
--- a/tests/run/cdef_setitem_T284.pyx
+++ b/tests/run/cdef_setitem_T284.pyx
@@ -1,4 +1,4 @@
-# ticket: 284
+# ticket: t284
def no_cdef():
"""
@@ -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