aboutsummaryrefslogtreecommitdiffstats
path: root/waflib/Tools/d_scan.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-17 17:31:03 +0100
committerDavid Robillard <d@drobilla.net>2019-03-17 18:14:27 +0100
commitada3add535204d69b5f29a41fe03ed71330d4cfd (patch)
tree7baaf187de01c826dea239094c2d9d4007e6459e /waflib/Tools/d_scan.py
parent72741e7bc14a1b3286d2b545426387e874c10c68 (diff)
parent69deb1ab7f622d04e9f1ef132cf3577abf9053a0 (diff)
downloadjalv-ada3add535204d69b5f29a41fe03ed71330d4cfd.tar.gz
jalv-ada3add535204d69b5f29a41fe03ed71330d4cfd.tar.bz2
jalv-ada3add535204d69b5f29a41fe03ed71330d4cfd.zip
Update autowaf and adapt to new API
Diffstat (limited to 'waflib/Tools/d_scan.py')
-rw-r--r--waflib/Tools/d_scan.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/waflib/Tools/d_scan.py b/waflib/Tools/d_scan.py
index 14c6c31..4e807a6 100644
--- a/waflib/Tools/d_scan.py
+++ b/waflib/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)