From: Stefan Behnel Date: Wed, 2 Jan 2008 16:55:03 +0000 (+0100) Subject: test fix X-Git-Tag: 0.9.6.14~51 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e0c899e36afa1a3c1808d732638fbf641e69c7b3;p=cython.git test fix --- diff --git a/tests/compile/withgil.pyx b/tests/compile/withgil.pyx index 35f75123..7d5d5484 100644 --- a/tests/compile/withgil.pyx +++ b/tests/compile/withgil.pyx @@ -1,5 +1,5 @@ cdef void f() with gil: x = 42 -cdef object g(object x) with gil: +cdef int g(void* x) with gil: pass