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 f9eb9e1 commit 8a7c9e2Copy full SHA for 8a7c9e2
pandas/core/arrays/_arrow_string_mixins.py
@@ -276,7 +276,8 @@ def _str_isascii(self):
276
else:
277
# Fallback: Apply Python's `str.isascii` manually and convert to PyArrow
278
pylist = [
279
- s.isascii() if isinstance(s, str) else None
+ True if s == "" else (s.isascii() if isinstance(s, str) else None)
280
+ #s.isascii() if isinstance(s, str) else None
281
for s in self._pa_array.to_pylist()
282
]
283
0 commit comments