eric6/ThirdParty/Pygments/pygments/__init__.py

changeset 7983
54c5cfbb1e29
parent 7701
25f42e208e08
equal deleted inserted replaced
7982:48d210e41c65 7983:54c5cfbb1e29
20 The `Pygments master branch`_ is installable with ``easy_install Pygments==dev``. 20 The `Pygments master branch`_ is installable with ``easy_install Pygments==dev``.
21 21
22 .. _Pygments master branch: 22 .. _Pygments master branch:
23 https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev 23 https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev
24 24
25 :copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS. 25 :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
26 :license: BSD, see LICENSE for details. 26 :license: BSD, see LICENSE for details.
27 """ 27 """
28 import sys 28 import sys
29 from io import StringIO, BytesIO 29 from io import StringIO, BytesIO
30 30
31 __version__ = '2.7.0' 31 __version__ = '2.7.4'
32 __docformat__ = 'restructuredtext' 32 __docformat__ = 'restructuredtext'
33 33
34 __all__ = ['lex', 'format', 'highlight'] 34 __all__ = ['lex', 'format', 'highlight']
35 35
36 36

eric ide

mercurial