--- a/ThirdParty/Pygments/pygments/lexers/asm.py Sat Jun 04 11:53:15 2011 +0200 +++ b/ThirdParty/Pygments/pygments/lexers/asm.py Sun Jun 05 18:25:36 2011 +0200 @@ -8,12 +8,12 @@ :copyright: Copyright 2006-2010 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ - import re from pygments.lexer import RegexLexer, include, bygroups, using, DelegatingLexer from pygments.lexers.compiled import DLexer, CppLexer, CLexer -from pygments.token import * +from pygments.token import Keyword, Punctuation, Other, Name, Comment, String, Text, \ + Number, Operator __all__ = ['GasLexer', 'ObjdumpLexer','DObjdumpLexer', 'CppObjdumpLexer', 'CObjdumpLexer', 'LlvmLexer', 'NasmLexer']