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 Danielle Adams
parent a384dd42ff
commit f80e93d71f
No known key found for this signature in database
GPG key ID: D3A89613643B6201
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

@ -86,7 +86,7 @@ INITIALIZER = 'source_.emplace("{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)