79797368

Date: 2025-10-23 03:29:59
Score: 1
Natty:
Report link

Here is a convenient wrapper function:

def re_rsearch(pattern: re.Pattern[str], *args, **kwargs) -> re.Match[str] | None:
    m = None
    for m in pattern.finditer(*args, **kwargs):
        pass
    return m
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: enwioa