tools: fix regex strings in Python tools

PR-URL: https://github.com/nodejs/node/pull/46671
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
This commit is contained in:
Jan Osusky 2023-02-09 11:49:31 +01:00 committed by Rich Trott
parent 6a80a2b8cb
commit af935fc9a9
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ def get_has_quic(include_path):
except OSError:
return False
regex = '^#\s*define OPENSSL_INFO_QUIC'
regex = r'^#\s*define OPENSSL_INFO_QUIC'
for line in f:
if (re.match(regex, line)):

View File

@ -92,7 +92,7 @@ INITIALIZER = '{{"{0}", UnionBytes{{{1}, {2}}} }},'
CONFIG_GYPI_ID = 'config_raw'
SLUGGER_RE =re.compile('[.\-/]')
SLUGGER_RE = re.compile(r'[.\-/]')
is_verbose = False

View File

@ -3,7 +3,7 @@
import re
import os
PLAIN_SOURCE_RE = re.compile('\s*"([^/$].+)"\s*')
PLAIN_SOURCE_RE = re.compile(r'\s*"([^/$].+)"\s*')
def DoMain(args):
gn_filename, pattern = args
src_root = os.path.dirname(gn_filename)