-
-
Notifications
You must be signed in to change notification settings - Fork 18.8k
BUG: fix Series.str.fullmatch() and Series.str.match() with a compiled regex failing with arrow strings #61964
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
It seems we don't actually document that we support a compiled regular expression, although it works in practice because we pass pat
to re.compile()
in the non-arrow version, and that works.
But so it would be good to update the documentation and typing then to reflect the fact that a compiled pattern is also supported.
@jorisvandenbossche Moved tests to |
The suggestions of @yuanx749 are in the good direction |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
Just added a small whatsnew note
Thanks @khemkaran10 |
Owee, I'm MrMeeseeks, Look at me. There seem to be a conflict, please backport manually. Here are approximate instructions:
And apply the correct labels and milestones. Congratulations — you did some good work! Hopefully your backport PR will be tested by the continuous integration and merged soon! Remember to remove the If these instructions are inaccurate, feel free to suggest an improvement. |
Fixes: #61952
After Fix:
Series.str.fullmatch()
andSeries.str.match()
with a compiled regex fails with arrow strings #61952