Skip to content

Commit b9056cb

Browse files
committed
wip: _str_isascii
1 parent f4f75ab commit b9056cb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/core/arrays/string_arrow.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,9 @@ def _str_isalpha(self):
459459
result = pc.utf8_is_alpha(self._pa_array)
460460
return self._result_converter(result)
461461

462+
def _str_isascii(self):
463+
return super()._str_isascii()
464+
462465
def _str_isdecimal(self):
463466
result = pc.utf8_is_decimal(self._pa_array)
464467
return self._result_converter(result)

0 commit comments

Comments
 (0)