Skip to content

Commit fe6fa7b

Browse files
author
Bruno P. Kinoshita
committed
Use cpdef instead of cdef
1 parent ca6940c commit fe6fa7b

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
@@ -136,7 +136,7 @@ def max_len_string_array(pandas_string[:] arr) -> Py_ssize_t:
136136
return m
137137

138138

139-
cdef inline Py_ssize_t max_len_string(object val):
139+
cpdef inline Py_ssize_t max_len_string(object val):
140140
""" return the maximum size of a string"""
141141
cdef:
142142
Py_ssize_t l = 0

0 commit comments

Comments
 (0)