# HG changeset patch # User Gregory Szorc # Date 1549317657 28800 # Node ID f16c03c7a3d7e9364a2a2ebe19fb6f7337c4a588 # Parent 20e62312e016007bdb5dbbc4121260d241f94a6f tests: use raw string in test-check-code.t To avoid a SyntaxWarning on Python 3.8 due to invalid \ escape. Differential Revision: https://phab.mercurial-scm.org/D5837 diff -r 20e62312e016 -r f16c03c7a3d7 tests/test-check-code.t --- a/tests/test-check-code.t Mon Feb 04 09:47:13 2019 -0800 +++ b/tests/test-check-code.t Mon Feb 04 14:00:57 2019 -0800 @@ -22,7 +22,7 @@ >>> commands = [] >>> with open('mercurial/debugcommands.py', 'rb') as fh: ... for line in fh: - ... m = re.match(b"^@command\('([a-z]+)", line) + ... m = re.match(br"^@command\('([a-z]+)", line) ... if m: ... commands.append(m.group(1)) >>> scommands = list(sorted(commands))