We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdf062d commit 28d3215Copy full SHA for 28d3215
nvpair.pxi
@@ -2,19 +2,14 @@
2
# cython: language_level=3, c_string_type=unicode, c_string_encoding=default
3
4
cimport nvpair
5
-import collections
+
6
import numbers
7
import cython
8
from types cimport *
9
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
+from collections.abc import Sequence
18
19
20
@cython.internal
0 commit comments