aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-09-14 20:53:54 +0300
committerMatti Picus <matti.picus@gmail.com>2020-09-14 20:53:54 +0300
commit6a11f6822c83c0761e2ddea8588c05faf0a8b904 (patch)
tree0dd7d1b8766f0a4001be2811f677b429789b1cac /pypy/doc/extending.rst
parentdo not display IRC_TOPIC even on this alpha release. Can be overridden from env (diff)
parentmerge default into py3.7 (diff)
downloadpypy-6a11f6822c83c0761e2ddea8588c05faf0a8b904.tar.gz
pypy-6a11f6822c83c0761e2ddea8588c05faf0a8b904.tar.bz2
pypy-6a11f6822c83c0761e2ddea8588c05faf0a8b904.zip
merge py3.7 into release3.7.xrelease-pypy3.7-v7.3.2rc2
Diffstat (limited to 'pypy/doc/extending.rst')
-rw-r--r--pypy/doc/extending.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/pypy/doc/extending.rst b/pypy/doc/extending.rst
index bb85673c3d..54ab1eaca2 100644
--- a/pypy/doc/extending.rst
+++ b/pypy/doc/extending.rst
@@ -34,8 +34,8 @@ could still be improved, but is already good.)
See the documentation here__.
-.. __: http://cffi.readthedocs.org/
-.. __: http://cffi.readthedocs.org/
+.. __: https://cffi.readthedocs.org/
+.. __: https://cffi.readthedocs.org/
CTypes
@@ -48,14 +48,14 @@ CPython, but close enough for most cases.
More (but older) information is available :doc:`here <discussion/ctypes-implementation>`.
Also, ctypes' performance is not as good as CFFI's.
-.. _CPython ctypes: http://docs.python.org/library/ctypes.html
+.. _CPython ctypes: https://docs.python.org/library/ctypes.html
PyPy implements ctypes as pure Python code around two built-in modules
called ``_rawffi`` and ``_rawffi.alt``, which give a very low-level binding to
the C library libffi_. Nowadays it is not recommended to use directly
these two modules.
-.. _libffi: http://sourceware.org/libffi/
+.. _libffi: https://sourceware.org/libffi/
cppyy