From d42124cb0982a710584a7c837b36475236e6de94 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 22 Mar 2001 13:36:39 +0000 Subject: [PATCH] Change co.detach() to co.back() call. --- Demo/threads/fcmp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Demo/threads/fcmp.py b/Demo/threads/fcmp.py index 37a2087ebe..83ebe01103 100644 --- a/Demo/threads/fcmp.py +++ b/Demo/threads/fcmp.py @@ -9,7 +9,7 @@ def fringe( co, list ): if type(x) is type([]): fringe(co, x) else: - co.detach(x) + co.back(x) def printinorder( list ): co = Coroutine() -- 2.50.0