-
-
Notifications
You must be signed in to change notification settings - Fork 199
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
Python 'regex' module support #1405
Comments
Wouldn't their need be filled by simply using the PCRE flavor? |
Mostly, yes, but if Most of those advanced features are supported under the |
Possible alternative is to have multiple code generators for Python? (2 vs 3, re vs regex) |
No, actually. In contrast to PCRE, the |
This may be a duplicate of #1219.
I see multiple issues being opened regarding Python syntax: #1271, #1403, #1404.
Should we offer users who choose Python as the flavor, a choice to select either the
re
or theregex
modules?regex
is backward-compatible withre
but extends many of the PCRE features, like inline flags,\K
, recursion, etc.The text was updated successfully, but these errors were encountered: