diff options
author | gbrandl <devnull@localhost> | 2006-10-29 17:51:32 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2006-10-29 17:51:32 +0100 |
commit | c427602fe901b202bf8f74eeeaff642c5b377431 (patch) | |
tree | bf2e9671a2752732d29af7c96052a464953555ef /pygments/lexer.py | |
parent | 415b0f78ad57c1ebd37cfbdeda525c8e791b20ea (diff) | |
download | pygments-c427602fe901b202bf8f74eeeaff642c5b377431.tar.gz |
[svn] Fix some pylint errors.
Diffstat (limited to 'pygments/lexer.py')
-rw-r--r-- | pygments/lexer.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pygments/lexer.py b/pygments/lexer.py index 28c5c825..3566f50e 100644 --- a/pygments/lexer.py +++ b/pygments/lexer.py @@ -371,6 +371,9 @@ class RegexLexer(Lexer): #: current one. tokens = {} + #: Processed tokens dict. This is filled by the metaclass. + _tokens = {} + def get_tokens_unprocessed(self, text, stack=['root']): """ Split ``text`` into (tokentype, text) pairs. |