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 e2f7405 commit 97ee243Copy full SHA for 97ee243
tools/mkssldef.py
@@ -26,7 +26,7 @@
26
27
for filename in filenames:
28
for line in open(filename).readlines():
29
- name, _, _, meta, _ = re.split('\s+', line)
+ name, _, _, meta, _ = re.split(r'\s+', line)
30
if any(p.match(name) for p in excludes): continue
31
meta = meta.split(':')
32
assert meta[0] in ('EXIST', 'NOEXIST')
0 commit comments