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 because Codon uses Google's re2 under the hood for regular expressions, which is faster but has some limitations. What we want to do at some point is also incorporate Python's regex engine and choose at compile time whether to go with Python or re2 (since the regex is normally known at compile time anyway).
In the following example, re.compile fails to match "(?<"
test.py:
Error message:
Reproduce:
'codon/codon-linux-x86_64/codon-deploy/bin/codon' run -release test.py
Behavior on CPython 3.10.8: work well
Environment:
codon: v0.15.5 on Feb 6
Ubuntu 18.04
The text was updated successfully, but these errors were encountered: