Skip to content

Commit ebafb75

Browse files
author
Bruno P. Kinoshita
committed
Use cpdef instead of cdef
1 parent 95724a2 commit ebafb75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/writers.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def max_len_string_array(pandas_string[:] arr) -> Py_ssize_t:
133133
return m
134134

135135

136-
cdef inline Py_ssize_t max_len_string(object val):
136+
cpdef inline Py_ssize_t max_len_string(object val):
137137
""" return the maximum size of a string"""
138138
cdef:
139139
Py_ssize_t l = 0

0 commit comments

Comments
 (0)