From 69afc20342225542320a0cfe5f05a189cf0550e3 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Sun, 4 Feb 2024 16:10:07 -0800 Subject: [PATCH] primecountpy/primecount.pyx: Use proper relative cimport --- primecountpy/primecount.pyx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/primecountpy/primecount.pyx b/primecountpy/primecount.pyx index 7653429..04f4398 100644 --- a/primecountpy/primecount.pyx +++ b/primecountpy/primecount.pyx @@ -16,7 +16,8 @@ from libcpp.string cimport string as cppstring from cpython.int cimport PyInt_FromString from cysignals.signals cimport sig_on, sig_off -cimport defs as pcount + +cimport .defs as pcount cdef inline int _do_sig(int64_t n): "threshold for sig_on/sig_off"