You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not beginners friendly as it requires having a look at the Rust source code and trying to understand it. You can't expect that from an average python user.
Therefore, it would be nice to document all the available flags at least in the examples.
For the long term development, it would be better to export the flags with speaking names, like the re module does (and also to allow passing multiple of them) to ensure compatibility.
from re import compile, MULTILINE
BASE_PATTERN = compile(r"foo-regex", MULTILINE)
The text was updated successfully, but these errors were encountered:
Thank you so much for providing this library. It will help me to improve performance in an application.
It was tedious work for me to figure out, how to enable multiline mode.
This is not beginners friendly as it requires having a look at the Rust source code and trying to understand it. You can't expect that from an average python user.
Therefore, it would be nice to document all the available flags at least in the examples.
For the long term development, it would be better to export the flags with speaking names, like the re module does (and also to allow passing multiple of them) to ensure compatibility.
The text was updated successfully, but these errors were encountered: