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: http://git.ipfire.org/?a=commitdiff_plain;h=d42124cb0982a710584a7c837b36475236e6de94;p=thirdparty%2FPython%2Fcpython.git Change co.detach() to co.back() call. --- diff --git a/Demo/threads/fcmp.py b/Demo/threads/fcmp.py index 37a2087ebeee..83ebe011035d 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()