From 71c94cca2b67d5fbb940eab33d156568949867d5 Mon Sep 17 00:00:00 2001 From: Spill-Tea Date: Tue, 15 Jul 2025 09:20:32 -0700 Subject: [PATCH] feat(_ext.lexers): Include missing double type in builtin words for cython lexer. --- docs/source/_ext/lexers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/_ext/lexers.py b/docs/source/_ext/lexers.py index 41f492c..4ade9f2 100644 --- a/docs/source/_ext/lexers.py +++ b/docs/source/_ext/lexers.py @@ -405,6 +405,7 @@ class CustomPythonLexer(MixinLexer, PythonLexer): "dict", "dir", "divmod", + "double", # added "enumerate", "eval", "execfile",