summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-08-07 11:48:02 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-10-15 10:58:58 +0200
commit38d3477e8c270f56f5f37a7b4f46ac928a93e330 (patch)
tree6c6135ba7c9f20c819bba9a6157f3108a29c7bde
parent3d2141da72148d065a1f2ab91589a7aa998c4074 (diff)
downloadpython-lxml-38d3477e8c270f56f5f37a7b4f46ac928a93e330.tar.gz
Remove outdated mention of Pyrex.
-rw-r--r--doc/capi.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/capi.txt b/doc/capi.txt
index 0167a5a4..0471d811 100644
--- a/doc/capi.txt
+++ b/doc/capi.txt
@@ -7,11 +7,10 @@ C extensions to efficiently access public functions and classes of lxml,
without going through the Python API.
The API is described in the file `etreepublic.pxd`_, which is directly
-c-importable by extension modules implemented in Pyrex_ or Cython_.
+c-importable by extension modules implemented in Cython_.
.. _`etreepublic.pxd`: https://github.com/lxml/lxml/blob/master/src/lxml/includes/etreepublic.pxd
-.. _Cython: http://cython.org
-.. _Pyrex: http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/
+.. _Cython: https://cython.org
.. contents::
..
@@ -45,7 +44,7 @@ Writing external modules in Cython
----------------------------------
This is the easiest way of extending lxml at the C level. A Cython_
-(or Pyrex_) module should start like this::
+module should start like this::
# My Cython extension