Remove debug print

This commit is contained in:
Łukasz Langa 2018-04-11 23:09:07 -07:00
parent 9138a75b75
commit e41844feb7

View File

@ -451,8 +451,6 @@ def generate_tokens(readline):
while pos < max:
pseudomatch = pseudoprog.match(line, pos)
if not pseudomatch:
print('no pseudomatch')
if pseudomatch: # scan for tokens
start, end = pseudomatch.span(1)
spos, epos, pos = (lnum, start), (lnum, end), end