Skip to content

Commit faeef89

Browse files
committed
more
1 parent e65d9f9 commit faeef89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/hashtable.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cython: profile=True
1+
# cython: profile=False
22

33
from cpython cimport PyObject, Py_INCREF, PyList_Check, PyTuple_Check
44

@@ -33,7 +33,7 @@ cdef extern from "Python.h":
3333
int PySlice_Check(object)
3434

3535
cdef size_t _INIT_VEC_CAP = 32
36-
cdef size_t _USE_GIL = 100000
36+
cdef size_t _USE_GIL = 1000000
3737

3838
def list_to_object_array(list obj):
3939
'''

0 commit comments

Comments
 (0)