Change co.detach() to co.back() call.

This commit is contained in:
Guido van Rossum 2001-03-22 13:36:39 +00:00
parent 27f9b84684
commit d42124cb09
1 changed files with 1 additions and 1 deletions

View File

@ -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()