We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
x=29; r, s = 'a?'_x+'a'_x, 'a'*x re2.match(r, s) 1 re2.search(r, s) 1 re2.compile(r).search(s) re2.compile(r).match(s)
By comparison:
re.match(r, s) <_sre.SRE_Match at 0x104cfc100>
… and likewise for the other three (to save you the 4 minutes or so to test for yourself:)).
The text was updated successfully, but these errors were encountered:
See Issue #11; it looks like the 0.2.20 release on pypi is broken. Installing from github master fixed this for me.
Sorry, something went wrong.
Published a fix to pypi
No branches or pull requests
By comparison:
… and likewise for the other three (to save you the 4 minutes or so to test for yourself:)).
The text was updated successfully, but these errors were encountered: