From 72a00769415e78623ee6069b3792b3c532495ee0 Mon Sep 17 00:00:00 2001 From: tqfx Date: Thu, 29 Feb 2024 14:08:03 +0800 Subject: [PATCH] disable autotestdict in cython --- python/src/a.pyx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/src/a.pyx b/python/src/a.pyx index d13864d..1521e7f 100644 --- a/python/src/a.pyx +++ b/python/src/a.pyx @@ -1,4 +1,7 @@ -#cython: auto_pickle=False, boundscheck=False, wraparound=False +#cython: autotestdict=False +#cython: auto_pickle=False +#cython: boundscheck=False +#cython: wraparound=False from a cimport * from cpython cimport * from cpython.array cimport array -- 2.11.4.GIT