We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a384dd4 commit f80e93dCopy full SHA for f80e93d
tools/getsharedopensslhasquic.py
@@ -14,7 +14,7 @@ def get_has_quic(include_path):
14
except OSError:
15
return False
16
17
- regex = '^#\s*define OPENSSL_INFO_QUIC'
+ regex = r'^#\s*define OPENSSL_INFO_QUIC'
18
19
for line in f:
20
if (re.match(regex, line)):
tools/js2c.py
@@ -86,7 +86,7 @@ def ReadFile(filename):
86
87
CONFIG_GYPI_ID = 'config_raw'
88
89
-SLUGGER_RE =re.compile('[.\-/]')
+SLUGGER_RE = re.compile(r'[.\-/]')
90
91
is_verbose = False
92
tools/v8_gypfiles/GN-scraper.py
@@ -3,7 +3,7 @@
3
import re
4
import os
5
6
-PLAIN_SOURCE_RE = re.compile('\s*"([^/$].+)"\s*')
+PLAIN_SOURCE_RE = re.compile(r'\s*"([^/$].+)"\s*')
7
def DoMain(args):
8
gn_filename, pattern = args
9
src_root = os.path.dirname(gn_filename)
0 commit comments