We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aefc47 commit da9f8cbCopy full SHA for da9f8cb
nvpair.pxi
@@ -10,11 +10,10 @@ from libc.stdint cimport uintptr_t
10
from libc.stdlib cimport malloc, free
11
12
try:
13
- from collections import Sequence
14
-except ImportError:
15
- # >= py3.10 moved everything into top-level "abc" module
16
- # https://docs.python.org/3.9/library/collections.html
17
from collections.abc import Sequence
+except ImportError:
+ # < py3.3 fallback
+ from collections import Sequence
18
19
20
@cython.internal
0 commit comments