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 39a3bf3 commit d31faacCopy full SHA for d31faac
pandas/core/strings/base.py
@@ -174,6 +174,10 @@ def _str_isalnum(self):
174
def _str_isalpha(self):
175
pass
176
177
+ @abc.abstractmethod
178
+ def _str_isascii(self):
179
+ pass
180
+
181
@abc.abstractmethod
182
def _str_isdecimal(self):
183
pandas/core/strings/object_array.py
@@ -409,6 +409,9 @@ def _str_isalnum(self):
409
410
return self._str_map(str.isalpha, dtype="bool")
411
412
413
+ return self._str_map(str.isascii, dtype="bool")
414
415
416
return self._str_map(str.isdecimal, dtype="bool")
417
0 commit comments