mirror of
https://github.com/python/cpython.git
synced 2025-09-13 20:27:05 +00:00
Remove unused leftover stray line
This commit is contained in:
parent
c0de59bfc3
commit
c6f22cc0a6
1 changed files with 0 additions and 1 deletions
|
@ -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):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue