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
Hello,
The regular expression here is no longer tolerated by the version of Python 3.11
"Global inline flags (e.g. (?i)) can now only be used at the start of the regular expressions"
Small suggested fix: _directive_re = re.compile(r'(?m)^\s*#.*?$')
The text was updated successfully, but these errors were encountered:
Hello,
The regular expression here is no longer tolerated by the version of Python 3.11
"Global inline flags (e.g. (?i)) can now only be used at the start of the regular expressions"
Small suggested fix:
_directive_re = re.compile(r'(?m)^\s*#.*?$')
The text was updated successfully, but these errors were encountered: