We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da9f8cb commit dc8e54dCopy full SHA for dc8e54d
nvpair.pxi
@@ -2,18 +2,13 @@
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.abc import Sequence
14
-except ImportError:
15
- # < py3.3 fallback
16
- from collections import Sequence
+from collections.abc import Sequence
17
18
19
@cython.internal
0 commit comments