We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 160b55d commit a6a252aCopy full SHA for a6a252a
pandas/_libs/hashtable.pxd
@@ -41,7 +41,7 @@ cdef class StringHashTable(HashTable):
41
42
cdef struct Int64VectorData:
43
int64_t *data
44
- size_t n, m
+ ssize_t n, m
45
46
cdef class Int64Vector:
47
cdef Int64VectorData *data
pandas/_libs/hashtable.pyx
@@ -44,7 +44,7 @@ cdef int64_t NPY_NAT = util.get_nat()
_SIZE_HINT_LIMIT = (1 << 20) + 7
-cdef size_t _INIT_VEC_CAP = 128
+cdef ssize_t _INIT_VEC_CAP = 128
48
49
include "hashtable_class_helper.pxi"
50
include "hashtable_func_helper.pxi"
0 commit comments