From e0c899e36afa1a3c1808d732638fbf641e69c7b3 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 2 Jan 2008 17:55:03 +0100 Subject: [PATCH] test fix --- tests/compile/withgil.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2