summaryrefslogtreecommitdiff
path: root/Doc/faq/design.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-29 09:24:54 +0100
committerGeorg Brandl <georg@python.org>2014-10-29 09:24:54 +0100
commitb4695f81a0590aab5acc14b9005d3f9b174332c2 (patch)
tree69615e4d0085c57cb3b511a98e8a7240dc8b5a35 /Doc/faq/design.rst
parent4e59c904afbe6c4f16a0f1ffaaf9b101dddefaf7 (diff)
downloadcpython-b4695f81a0590aab5acc14b9005d3f9b174332c2.tar.gz
Fixing broken links in doc, part 1: faq/
Diffstat (limited to 'Doc/faq/design.rst')
-rw-r--r--Doc/faq/design.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index d4dda4b01b..9fdf8cb949 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -368,9 +368,9 @@ Can Python be compiled to machine code, C or some other language?
Practical answer:
-`Cython <http://cython.org/>`_ and `Pyrex <http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/>`_
+`Cython <http://cython.org/>`_ and `Pyrex <http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/>`_
compile a modified version of Python with optional annotations into C
-extensions. `Weave <http://www.scipy.org/Weave>`_ makes it easy to
+extensions. `Weave <http://docs.scipy.org/doc/scipy-dev/reference/tutorial/weave.html>`_ makes it easy to
intermingle Python and C code in various ways to increase performance.
`Nuitka <http://www.nuitka.net/>`_ is an up-and-coming compiler of Python
into C++ code, aiming to support the full Python language.
@@ -392,7 +392,7 @@ approach is feasible, although the speedups reached so far are only modest
Hugunin has demonstrated that in combination with whole-program analysis,
speedups of 1000x are feasible for small demo programs. See the proceedings
from the `1997 Python conference
-<https://www.python.org/workshops/1997-10/proceedings/>`_ for more information.)
+<http://legacy.python.org/workshops/1997-10/proceedings/>`_ for more information.)
How does Python manage memory?