Skip to content

Commit c4b4183

Browse files
Fix pandas-dev#61072: inconsistent fullmatch results using PyArrow
1 parent 101ebf5 commit c4b4183

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

pandas/core/strings/accessor.py

-1
Original file line numberDiff line numberDiff line change
@@ -1489,7 +1489,6 @@ def fullmatch(self, pat, case: bool = True, flags: int = 0, na=lib.no_default):
14891489
"""
14901490

14911491
is_pyarrow = False
1492-
14931492
arr = self._data.array
14941493

14951494
arr_type = type(arr).__name__

pandas/tests/test.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# True
1212
# True
1313

14+
1415
test_series2 = pandas.Series(['asdf', 'as'], dtype=str)
1516

1617
print(test_series2.str.fullmatch(regex))

0 commit comments

Comments
 (0)