summaryrefslogtreecommitdiff
path: root/Doc/faq
diff options
context:
space:
mode:
authorJulien Palard <julien@palard.fr>2018-07-05 06:31:38 +0200
committerMariatta <Mariatta@users.noreply.github.com>2018-07-04 21:31:38 -0700
commita6e1e41e0563c87e93085d3a7f7d96e9bbf792d7 (patch)
treea3289bbf3d9fad37d989c83e99c70b596678b3b9 /Doc/faq
parente69cd169afdfb013db9e8dbfd0f87f7658660f32 (diff)
downloadcpython-git-a6e1e41e0563c87e93085d3a7f7d96e9bbf792d7.tar.gz
Update Stackless Python wiki URL (GH-8072)
It was moved from bitbucket to GitHub.
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/design.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index c2bf37a7a8..5168121947 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -348,7 +348,7 @@ each Python stack frame. Also, extensions can call back into Python at almost
random moments. Therefore, a complete threads implementation requires thread
support for C.
-Answer 2: Fortunately, there is `Stackless Python <https://bitbucket.org/stackless-dev/stackless/wiki/Home>`_,
+Answer 2: Fortunately, there is `Stackless Python <https://github.com/stackless-dev/stackless/wiki>`_,
which has a completely redesigned interpreter loop that avoids the C stack.