From: Dag Sverre Seljebotn Date: Mon, 25 Aug 2008 14:15:49 +0000 (+0200) Subject: More cleanup X-Git-Tag: 0.9.9.2.beta~63^2~31^2 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=d2a48a2a931353e7e66953d6fb10bb068980a9a4;p=cython.git More cleanup --- diff --git a/tests/run/bufaccess.pyx b/tests/run/bufaccess.pyx index d781a3b1..dff49290 100644 --- a/tests/run/bufaccess.pyx +++ b/tests/run/bufaccess.pyx @@ -25,11 +25,11 @@ setup_string = u""" """ -def testcase2(func): +def testcase(func): __test__[func.__name__] = setup_string + func.__doc__ return func -def testcase(a): +def testcas(a): pass @@ -50,7 +50,7 @@ def printbuf(): cdef object[int, ndim=2] buf print buf -@testcase2 +@testcase def acquire_release(o1, o2): """ >>> acquire_release(A, B)