Python support for regular expressions
Python support for regular expressions
Posted Mar 10, 2022 1:26 UTC (Thu) by bartoc (guest, #124262)In reply to: Python support for regular expressions by rra
Parent article: Python support for regular expressions
The re module is fine for a lot of stuff, we use it in some python scripts related to our build system and test harness, and we wouldn't want to use regex from pip since re works well enough for us, and regex doesn't come pre-installed. That said if it _did_ come pre-installed I'd be tempted to go through and upgrade all our python scripts, even if it was maintained and released on a schedule separate from the standard library proper.
Sidenote: I really like raku/perl6's alternate regex syntax, it's nice.