diff options
Diffstat (limited to 'pygments')
-rw-r--r-- | pygments/lexer.py | 6 | ||||
-rw-r--r-- | pygments/lexers/__init__.py | 2 | ||||
-rw-r--r-- | pygments/util.py | 3 |
3 files changed, 5 insertions, 6 deletions
diff --git a/pygments/lexer.py b/pygments/lexer.py index b5320ce2..049b2868 100644 --- a/pygments/lexer.py +++ b/pygments/lexer.py @@ -67,9 +67,9 @@ class Lexer(object): def analyse_text(text): """ - Has to return an float between ``0`` and ``1`` that indicates - if a lexer wants to highighlight that. used by ``guess_lexer``. - If this method returns ``0`` it won't highlight it at all, if + Has to return a float between ``0`` and ``1`` that indicates + if a lexer wants to highlight this text. Used by ``guess_lexer``. + If this method returns ``0`` it won't highlight it in any case, if it returns ``1`` highlighting with this lexer is guaranteed. The `LexerMeta` metaclass automatically wraps this function so diff --git a/pygments/lexers/__init__.py b/pygments/lexers/__init__.py index 0f7c0483..b102076d 100644 --- a/pygments/lexers/__init__.py +++ b/pygments/lexers/__init__.py @@ -98,9 +98,9 @@ def guess_lexer(text, **options): class _automodule(types.ModuleType): + """Automatically import lexers.""" def __getattr__(self, name): - """Automatically import lexers.""" info = LEXERS.get(name) if info: _load_lexers(info[0]) diff --git a/pygments/util.py b/pygments/util.py index 8ad994c6..9c84e8dc 100644 --- a/pygments/util.py +++ b/pygments/util.py @@ -3,8 +3,7 @@ pygments.util ~~~~~~~~~~~~~ - Utility functions, currently only for parsing lexer - and formatter options. + Utility functions. :copyright: 2006 by Georg Brandl. :license: GNU LGPL, see LICENSE for more details. |