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 9fe0e46 commit 6f738b3Copy full SHA for 6f738b3
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