summaryrefslogtreecommitdiffstats
path: root/Doc/extending
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-02-26 18:37:12 (GMT)
committerGeorg Brandl <georg@python.org>2016-02-26 18:37:12 (GMT)
commit6e0b44ef9eedf94cfbafea8a298fe9b6f39b18ff (patch)
tree29d9ee893681ff303ca2e24f0363dd782ca7c138 /Doc/extending
parentbb650631f239823a951cc141b14325ab32d64711 (diff)
downloadcpython-6e0b44ef9eedf94cfbafea8a298fe9b6f39b18ff.zip
cpython-6e0b44ef9eedf94cfbafea8a298fe9b6f39b18ff.tar.gz
cpython-6e0b44ef9eedf94cfbafea8a298fe9b6f39b18ff.tar.bz2
Closes #25910: fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch.
Diffstat (limited to 'Doc/extending')
-rw-r--r--Doc/extending/extending.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst
index 4b23463..36de32a 100644
--- a/Doc/extending/extending.rst
+++ b/Doc/extending/extending.rst
@@ -27,7 +27,7 @@ your system setup; details are given in later chapters.
avoid writing C extensions and preserve portability to other implementations.
For example, if your use case is calling C library functions or system calls,
you should consider using the :mod:`ctypes` module or the `cffi
- <http://cffi.readthedocs.org>`_ library rather than writing custom C code.
+ <https://cffi.readthedocs.org>`_ library rather than writing custom C code.
These modules let you write Python code to interface with C code and are more
portable between implementations of Python than writing and compiling a C
extension module.