Commit c6f22cc0 authored by Raymond Hettinger's avatar Raymond Hettinger

Remove unused leftover stray line

parent c0de59bf
...@@ -1346,7 +1346,6 @@ successive matches:: ...@@ -1346,7 +1346,6 @@ successive matches::
('MISMATCH',r'.'), # Any other character ('MISMATCH',r'.'), # Any other character
] ]
tok_regex = '|'.join('(?P<%s>%s)' % pair for pair in token_specification) tok_regex = '|'.join('(?P<%s>%s)' % pair for pair in token_specification)
get_token = re.compile(tok_regex).match
line_num = 1 line_num = 1
line_start = 0 line_start = 0
for mo in re.finditer(tok_regex, code): for mo in re.finditer(tok_regex, code):
......
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