Commit 5a5d4ee3 authored by Stefan Behnel's avatar Stefan Behnel

tighten regex for utility code cleanup

parent c212735c
...@@ -159,7 +159,7 @@ class UtilityCodeBase(object): ...@@ -159,7 +159,7 @@ class UtilityCodeBase(object):
else: else:
comment = '/' comment = '/'
strip_comments = partial(re.compile(r'^\s*//.*|/\*[^*]*\*/').sub, '') strip_comments = partial(re.compile(r'^\s*//.*|/\*[^*]*\*/').sub, '')
rstrip = partial(re.compile(r'\s*(\\?)$').sub, r'\1') rstrip = partial(re.compile(r'\s+(\\?)$').sub, r'\1')
match_special = re.compile( match_special = re.compile(
(r'^%(C)s{5,30}\s*(?P<name>(?:\w|\.)+)\s*%(C)s{5,30}|' (r'^%(C)s{5,30}\s*(?P<name>(?:\w|\.)+)\s*%(C)s{5,30}|'
r'^%(C)s+@(?P<tag>\w+)\s*:\s*(?P<value>(?:\w|[.:])+)') % r'^%(C)s+@(?P<tag>\w+)\s*:\s*(?P<value>(?:\w|[.:])+)') %
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment