Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: fix regex strings in Python tools #46585

Merged
merged 2 commits into from
Feb 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/getsharedopensslhasquic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)):
Expand Down
2 changes: 1 addition & 1 deletion tools/js2c.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def ReadFile(filename):

CONFIG_GYPI_ID = 'config_raw'

SLUGGER_RE =re.compile('[.\-/]')
SLUGGER_RE =re.compile(r'[.\-/]')

is_verbose = False

Expand Down
2 changes: 1 addition & 1 deletion tools/v8_gypfiles/GN-scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down