You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pandas/core/arrays/_arrow_string_mixins.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -282,7 +282,7 @@ def _str_isalpha(self):
282
282
283
283
def_str_isascii(self):
284
284
# Check if the array is of string type (or if the implementation should handle it) # Apply the isascii check element-wise using PyArrow's compute functions
285
-
result=pc.ascii_is_ascii(self._pa_array)
285
+
result=pc.string_is_ascii(self._pa_array)
286
286
287
287
# Convert the result to the appropriate format (e.g., PyArrow BooleanArray)
0 commit comments