From d91085598f5185b267ea51a3f615da9527af2ed2 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 17 Mar 2006 08:00:19 +0000 Subject: Remove apply() --- Demo/threads/Coroutine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Demo/threads/Coroutine.py') diff --git a/Demo/threads/Coroutine.py b/Demo/threads/Coroutine.py index 4cc65f7bf8d..10fa303f139 100644 --- a/Demo/threads/Coroutine.py +++ b/Demo/threads/Coroutine.py @@ -115,7 +115,7 @@ class Coroutine: if not self.killed: try: try: - apply(me.f, args) + me.f(*args) except Killed: pass finally: -- cgit v1.2.3