From 7e1c0a8572edea20367cdaa25fd852494c7ffaff Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Tue, 3 Jul 2018 22:27:08 +0200 Subject: [PATCH] Stackless Python wiki moved to github. --- Doc/faq/design.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst index c2bf37a7a82ea8..5168121947853a 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 `_, +Answer 2: Fortunately, there is `Stackless Python `_, which has a completely redesigned interpreter loop that avoids the C stack.