summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/sphinx/python2-lexer.patch
diff options
context:
space:
mode:
authorJoão Figueira <jmc.figueira@campus.fct.unl.pt>2022-01-24 01:33:13 +0000
committerGitHub <noreply@github.com>2022-01-24 01:33:13 +0000
commitae10fad86b2d7a357825c19a563dd5dac60a67da (patch)
treea2bde77769ba6055989c27aaf1ac7287ad56d640 /pkgs/development/python-modules/sphinx/python2-lexer.patch
parent0ac894e7d1d91e32fdcdc901229f16f27f321374 (diff)
parent8dbc4efd40169a8e3e57375b08d78205e5f83ff0 (diff)
Merge branch 'master' into wine-wayland
Diffstat (limited to 'pkgs/development/python-modules/sphinx/python2-lexer.patch')
-rw-r--r--pkgs/development/python-modules/sphinx/python2-lexer.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/sphinx/python2-lexer.patch b/pkgs/development/python-modules/sphinx/python2-lexer.patch
deleted file mode 100644
index cf4a243315a2..000000000000
--- a/pkgs/development/python-modules/sphinx/python2-lexer.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/sphinx/highlighting.py b/sphinx/highlighting.py
-index ac2bd1b06..63ca52de2 100644
---- a/sphinx/highlighting.py
-+++ b/sphinx/highlighting.py
-@@ -16,7 +16,7 @@ from pygments.filters import ErrorToken
- from pygments.formatters import HtmlFormatter, LatexFormatter
- from pygments.lexer import Lexer # NOQA
- from pygments.lexers import get_lexer_by_name, guess_lexer
--from pygments.lexers import PythonLexer, Python3Lexer, PythonConsoleLexer, \
-+from pygments.lexers import Python2Lexer, Python3Lexer, PythonConsoleLexer, \
- CLexer, TextLexer, RstLexer
- from pygments.styles import get_style_by_name
- from pygments.util import ClassNotFound
-@@ -40,7 +40,7 @@ logger = logging.getLogger(__name__)
-
- lexers = dict(
- none = TextLexer(stripnl=False),
-- python = PythonLexer(stripnl=False),
-+ python = Python2Lexer(stripnl=False),
- python3 = Python3Lexer(stripnl=False),
- pycon = PythonConsoleLexer(stripnl=False),
- pycon3 = PythonConsoleLexer(python3=True, stripnl=False),