79461262

Date: 2025-02-23 13:11:04
Score: 2.5
Natty:
Report link

I just want to point out that using a non-escaped "++" in a regex pattern should no longer raise a "multiple error" in version 3.11, as it now has a specific meaning:

x*+, x++, and x?+ are equivalent to (?>x*), (?>x+), and (?>x?) respectively.

see re documentation

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: pommelador