We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ecf88d commit 1a6a26bCopy full SHA for 1a6a26b
pandas/core/arrays/_arrow_string_mixins.py
@@ -284,8 +284,11 @@ def _str_isascii(self):
284
def _str_isascii(self):
285
# Handle the case where self might be a pandas StringArray or similar
286
# Check if each value is not NA, and is a string of length 1 (single character)
287
+ def isna(value):
288
+ return value is None
289
+
290
def check_ascii(value):
- if pd.isna(value):
291
+ if isna(value):
292
return False # Or return True depending on how you want to handle NA values
293
if len(value) != 1:
294
raise ValueError(f"Expected a string of length 1, got: {value}")
0 commit comments