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 dcd8c38 commit 8634a37Copy full SHA for 8634a37
pandas/_libs/lib.pyx
@@ -263,7 +263,7 @@ def item_from_zerodim(val: object) -> object:
263
264
@cython.wraparound(False)
265
@cython.boundscheck(False)
266
-def fast_unique_multiple(list arrays, bint sort=True):
+def fast_unique_multiple(list arrays, sort: bool = True):
267
"""
268
Generate a list of unique values from a list of arrays.
269
@@ -303,7 +303,7 @@ def fast_unique_multiple(list arrays, bint sort=True):
303
304
305
306
-def fast_unique_multiple_list(lists: list, bint sort=True) -> list:
+def fast_unique_multiple_list(lists: list, sort: bool = True) -> list:
307
cdef:
308
list buf
309
Py_ssize_t k = len(lists)
0 commit comments