Page MenuHomeDevCentral

Declare regular expression patterns as raw Python strings
ClosedPublic

Authored by dereckson on Jul 4 2026, 12:09.
Tags
None
Referenced Files
F48511333: D4112.diff
Sun, Sep 6, 20:45
Unknown Object (File)
Sat, Sep 5, 20:59
Unknown Object (File)
Sat, Sep 5, 00:33
Unknown Object (File)
Thu, Sep 3, 23:54
Unknown Object (File)
Wed, Sep 2, 16:22
Unknown Object (File)
Tue, Sep 1, 18:44
Unknown Object (File)
Sat, Aug 29, 12:50
Unknown Object (File)
Sat, Aug 29, 00:03
Subscribers
None

Details

Summary

This follow current Python style best practice when no escape
is needed, and avoid a syntax warning when the string escapes
a character only to be escaped for regexp, not for Python strings.

Fixes the following issue on Python 3.12+:

/usr/local/bin/shell:138: SyntaxWarning: invalid escape sequence '\|'
  matches = re.search("(.*)\|(.*)", variable)

Diff Detail

Repository
rOPS Nasqueron Operations
Lint
Lint Passed
Unit
No Test Coverage
Branch
main
Build Status
Buildable 6723
Build 7011: arc lint + arc unit

Event Timeline

dereckson created this revision.
dereckson edited the summary of this revision. (Show Details)
This revision is now accepted and ready to land.Jul 4 2026, 12:14