/
usr
/
lib
/
python2.6
/
site-packages
/
pygments
/
/usr/lib/python2.6/site-packages/pygments
mkdir
upload
Name
Size
Mode
Actions
filters/
-
0755
rm
formatters/
-
0755
rm
lexers/
-
0755
rm
styles/
-
0755
rm
cmdline.py
13055
0644
edit
dl
rm
cmdline.pyc
10443
0644
edit
dl
rm
cmdline.pyo
10443
0644
edit
dl
rm
console.py
1850
0644
edit
dl
rm
console.pyc
2340
0644
edit
dl
rm
console.pyo
2340
0644
edit
dl
rm
filter.py
2071
0644
edit
dl
rm
filter.pyc
3184
0644
edit
dl
rm
filter.pyo
3184
0644
edit
dl
rm
formatter.py
2790
0644
edit
dl
rm
formatter.pyc
3344
0644
edit
dl
rm
formatter.pyo
3344
0644
edit
dl
rm
lexer.py
22625
0644
edit
dl
rm
lexer.pyc
20971
0644
edit
dl
rm
lexer.pyo
20204
0644
edit
dl
rm
plugin.py
1862
0644
edit
dl
rm
plugin.pyc
2373
0644
edit
dl
rm
plugin.pyo
2373
0644
edit
dl
rm
scanner.py
3114
0644
edit
dl
rm
scanner.pyc
4174
0644
edit
dl
rm
scanner.pyo
4174
0644
edit
dl
rm
style.py
3745
0644
edit
dl
rm
style.pyc
3943
0644
edit
dl
rm
style.pyo
3867
0644
edit
dl
rm
token.py
5784
0644
edit
dl
rm
token.pyc
5408
0644
edit
dl
rm
token.pyo
5408
0644
edit
dl
rm
unistring.py
404249
0644
edit
dl
rm
unistring.pyc
208515
0644
edit
dl
rm
unistring.pyo
208515
0644
edit
dl
rm
util.py
6577
0644
edit
dl
rm
util.pyc
7797
0644
edit
dl
rm
util.pyo
7797
0644
edit
dl
rm
__init__.py
2935
0644
edit
dl
rm
__init__.pyc
3334
0644
edit
dl
rm
__init__.pyo
3334
0644
edit
dl
rm
Edit:
/usr/lib/python2.6/site-packages/pygments/filter.py
(2071B)
# -*- coding: utf-8 -*- """ pygments.filter ~~~~~~~~~~~~~~~ Module that implements the default filter. :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ def apply_filters(stream, filters, lexer=None): """ Use this method to apply an iterable of filters to a stream. If lexer is given it's forwarded to the filter, otherwise the filter receives `None`. """ def _apply(filter_, stream): for token in filter_.filter(lexer, stream): yield token for filter_ in filters: stream = _apply(filter_, stream) return stream def simplefilter(f): """ Decorator that converts a function into a filter:: @simplefilter def lowercase(lexer, stream, options): for ttype, value in stream: yield ttype, value.lower() """ return type(f.__name__, (FunctionFilter,), { 'function': f, '__module__': getattr(f, '__module__'), '__doc__': f.__doc__ }) class Filter(object): """ Default filter. Subclass this class or use the `simplefilter` decorator to create own filters. """ def __init__(self, **options): self.options = options def filter(self, lexer, stream): raise NotImplementedError() class FunctionFilter(Filter): """ Abstract class used by `simplefilter` to create simple function filters on the fly. The `simplefilter` decorator automatically creates subclasses of this class for functions passed to it. """ function = None def __init__(self, **options): if not hasattr(self, 'function'): raise TypeError('%r used without bound function' % self.__class__.__name__) Filter.__init__(self, **options) def filter(self, lexer, stream): # pylint: disable-msg=E1102 for ttype, value in self.function(lexer, stream, self.options): yield ttype, value
Save
cmd:
run