File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def get_has_quic(include_path):
1414 except OSError :
1515 return False
1616
17- regex = '^#\s*define OPENSSL_INFO_QUIC'
17+ regex = r '^#\s*define OPENSSL_INFO_QUIC'
1818
1919 for line in f :
2020 if (re .match (regex , line )):
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ def ReadFile(filename):
8686
8787CONFIG_GYPI_ID = 'config_raw'
8888
89- SLUGGER_RE = re .compile ('[.\-/]' )
89+ SLUGGER_RE = re .compile (r '[.\-/]' )
9090
9191is_verbose = False
9292
Original file line number Diff line number Diff line change 33import re
44import os
55
6- PLAIN_SOURCE_RE = re .compile ('\s*"([^/$].+)"\s*' )
6+ PLAIN_SOURCE_RE = re .compile (r '\s*"([^/$].+)"\s*' )
77def DoMain (args ):
88 gn_filename , pattern = args
99 src_root = os .path .dirname (gn_filename )
You can’t perform that action at this time.
0 commit comments