diff options
Diffstat (limited to 'pygments/lexer.py')
-rw-r--r-- | pygments/lexer.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pygments/lexer.py b/pygments/lexer.py index 0e6f06bb..053df0fd 100644 --- a/pygments/lexer.py +++ b/pygments/lexer.py @@ -477,7 +477,6 @@ class RegexLexer(Lexer): for rexmatch, action, new_state in statetokens: m = rexmatch(text, pos) if m: - # print rex.pattern if type(action) is _TokenType: yield pos, action, m.group() else: |