From: Guido van Rossum Date: Thu, 22 Mar 2001 13:36:39 +0000 (+0000) Subject: Change co.detach() to co.back() call. X-Git-Tag: v2.1b2~82 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d42124cb0982a710584a7c837b36475236e6de94;p=python Change co.detach() to co.back() call. --- 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()