| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,7 +14,7 @@ def get_has_quic(include_path): | |||
| 14 | 14 | except OSError: | |
| 15 | 15 | return False | |
| 16 | 16 | ||
| 17 | - regex = '^#\s*define OPENSSL_INFO_QUIC' | ||
| 17 | + regex = r'^#\s*define OPENSSL_INFO_QUIC' | ||
| 18 | 18 | ||
| 19 | 19 | for line in f: | |
| 20 | 20 | if (re.match(regex, line)): | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -92,7 +92,7 @@ def ReadFile(filename): | |||
| 92 | 92 | ||
| 93 | 93 | CONFIG_GYPI_ID = 'config_raw' | |
| 94 | 94 | ||
| 95 | - SLUGGER_RE =re.compile('[.\-/]') | ||
| 95 | + SLUGGER_RE = re.compile(r'[.\-/]') | ||
| 96 | 96 | ||
| 97 | 97 | is_verbose = False | |
| 98 | 98 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,7 +3,7 @@ | |||
| 3 | 3 | import re | |
| 4 | 4 | import os | |
| 5 | 5 | ||
| 6 | - PLAIN_SOURCE_RE = re.compile('\s*"([^/$].+)"\s*') | ||
| 6 | + PLAIN_SOURCE_RE = re.compile(r'\s*"([^/$].+)"\s*') | ||
| 7 | 7 | def DoMain(args): | |
| 8 | 8 | gn_filename, pattern = args | |
| 9 | 9 | src_root = os.path.dirname(gn_filename) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments