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
Running re2, this is what I get:
import re2 o = re2.compile(r"test") 1 print o.search("test") None
While a similar run on re gives me:
import re x = re.compile(r"test") print x.search("test") <_sre.SRE_Match object at 0x7f974fb3b1d0>
Two key differences:
Am I doing something obviously wrong? I'm running the latest (0.2.20) with google's latest (re2-20140304)
Thanks! Ido
The text was updated successfully, but these errors were encountered:
I believe it is fixed in master, but not in pypi package. See #17 and #11.
Sorry, something went wrong.
Yup, that fixed it, thanks!
fixed
No branches or pull requests
Running re2, this is what I get:
While a similar run on re gives me:
Two key differences:
Am I doing something obviously wrong?
I'm running the latest (0.2.20) with google's latest (re2-20140304)
Thanks!
Ido
The text was updated successfully, but these errors were encountered: