diff options
author | Georg Brandl <georg@python.org> | 2010-02-18 00:05:17 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-02-18 00:05:17 +0100 |
commit | 8639a2afad99f0c1bee2732823f57246b6596c73 (patch) | |
tree | 6d0b6bc3f40eef2354ebfc238cc7591542c9c9d7 /pygments/lexer.py | |
parent | 597c5ee69ee58012eb4a8e8e08f8f855926052bc (diff) | |
download | pygments-8639a2afad99f0c1bee2732823f57246b6596c73.tar.gz |
Remove undefined name from __all__.
Diffstat (limited to 'pygments/lexer.py')
-rw-r--r-- | pygments/lexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexer.py b/pygments/lexer.py index f28627b3..eacc90a5 100644 --- a/pygments/lexer.py +++ b/pygments/lexer.py @@ -23,7 +23,7 @@ from pygments.util import get_bool_opt, get_int_opt, get_list_opt, \ __all__ = ['Lexer', 'RegexLexer', 'ExtendedRegexLexer', 'DelegatingLexer', - 'LexerContext', 'include', 'flags', 'bygroups', 'using', 'this'] + 'LexerContext', 'include', 'bygroups', 'using', 'this'] _default_analyse = staticmethod(lambda x: 0.0) |