summaryrefslogtreecommitdiffstats
path: root/Tools/d_scan.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-17 17:23:45 +0100
committerDavid Robillard <d@drobilla.net>2019-03-17 17:24:02 +0100
commite7a29b6b9b2f842314244c23c14d8f8f560904e1 (patch)
treed2dcbaf61f3749f73dc7a5e10d3fc6cd5e6e129a /Tools/d_scan.py
parent8280f9de69f93624896b8875caf039066cac0314 (diff)
downloadautowaf-e7a29b6b9b2f842314244c23c14d8f8f560904e1.tar.gz
autowaf-e7a29b6b9b2f842314244c23c14d8f8f560904e1.tar.bz2
autowaf-e7a29b6b9b2f842314244c23c14d8f8f560904e1.zip
Upgrade to waf 2.0.15
Diffstat (limited to 'Tools/d_scan.py')
-rw-r--r--Tools/d_scan.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/d_scan.py b/Tools/d_scan.py
index 14c6c31..4e807a6 100644
--- a/Tools/d_scan.py
+++ b/Tools/d_scan.py
@@ -93,8 +93,8 @@ class d_parser(object):
self.allnames = []
- self.re_module = re.compile("module\s+([^;]+)")
- self.re_import = re.compile("import\s+([^;]+)")
+ self.re_module = re.compile(r"module\s+([^;]+)")
+ self.re_import = re.compile(r"import\s+([^;]+)")
self.re_import_bindings = re.compile("([^:]+):(.*)")
self.re_import_alias = re.compile("[^=]+=(.+)")
@@ -138,7 +138,7 @@ class d_parser(object):
mod_name = self.re_module.search(code)
if mod_name:
- self.module = re.sub('\s+', '', mod_name.group(1)) # strip all whitespaces
+ self.module = re.sub(r'\s+', '', mod_name.group(1)) # strip all whitespaces
# go through the code, have a look at all import occurrences
@@ -146,7 +146,7 @@ class d_parser(object):
import_iterator = self.re_import.finditer(code)
if import_iterator:
for import_match in import_iterator:
- import_match_str = re.sub('\s+', '', import_match.group(1)) # strip all whitespaces
+ import_match_str = re.sub(r'\s+', '', import_match.group(1)) # strip all whitespaces
# does this end with an import bindings declaration?
# (import bindings always terminate the list of imports)