We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b88139d commit ee2626eCopy full SHA for ee2626e
pandas/lib.pyx
@@ -905,19 +905,19 @@ def clean_index_list(list obj):
905
return maybe_convert_objects(converted), 0
906
907
908
-ctypedef fused pandas_t:
+ctypedef fused pandas_string:
909
str
910
unicode
911
bytes
912
913
914
@cython.boundscheck(False)
915
@cython.wraparound(False)
916
-cpdef Py_ssize_t max_len_string_array(pandas_t[:] arr):
+cpdef Py_ssize_t max_len_string_array(pandas_string[:] arr):
917
""" return the maximum size of elements in a 1-dim string array """
918
cdef:
919
Py_ssize_t i, m = 0, l = 0, length = arr.shape[0]
920
- pandas_t v
+ pandas_string v
921
922
for i in range(length):
923
v = arr[i]
0 commit comments