eric6/ThirdParty/Pygments/pygments/__init__.py

changeset 7701
25f42e208e08
parent 7547
21b0534faebc
child 7983
54c5cfbb1e29
equal deleted inserted replaced
7700:a3cf077a8db3 7701:25f42e208e08
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-2019 by the Pygments team, see AUTHORS. 25 :copyright: Copyright 2006-2020 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.6.1' 31 __version__ = '2.7.0'
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