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-08-12 16:59:02 +0200
commitd866aad6313e9a042d5cb8654a891616607c0532 (patch)
tree3b062b2d27fda907af4df1778aedb35584edc806
parent36bca0b36548e1391f38bdb937593b3f9ce3056b (diff)
downloadpython-lxml-d866aad6313e9a042d5cb8654a891616607c0532.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