summaryrefslogtreecommitdiff
path: root/tests/run/py34_signature.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/py34_signature.pyx')
-rw-r--r--tests/run/py34_signature.pyx6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/run/py34_signature.pyx b/tests/run/py34_signature.pyx
index 6bfaec677..14780ff7b 100644
--- a/tests/run/py34_signature.pyx
+++ b/tests/run/py34_signature.pyx
@@ -101,19 +101,17 @@ cpdef cp1(a, b):
"""
-# Currently broken, see GH #1864
cpdef cp2(a, b=True):
"""
>>> def py_cp2(a, b=True): pass
- #>>> signatures_match(cp2, py_cp2)
+ >>> signatures_match(cp2, py_cp2)
"""
-# Currently broken, see GH #1864
cpdef cp3(a=1, b=True):
"""
>>> def py_cp3(a=1, b=True): pass
- #>>> signatures_match(cp3, py_cp3)
+ >>> signatures_match(cp3, py_cp3)
"""