From: Ɓukasz Langa Date: Thu, 12 Apr 2018 06:09:07 +0000 (-0700) Subject: Remove debug print X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/e41844feb74fe266f4cc44f0b5ee57c03e138c2c Remove debug print --- diff --git a/blib2to3/pgen2/tokenize.py b/blib2to3/pgen2/tokenize.py index bd99454..a352713 100644 --- a/blib2to3/pgen2/tokenize.py +++ b/blib2to3/pgen2/tokenize.py @@ -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