From eb0641b1ee0c464aaa485785aa288a4fb845af41 Mon Sep 17 00:00:00 2001 From: donovan Date: Mon, 5 Jan 2009 16:26:59 -0800 Subject: [PATCH] update this docstring to be a complete sentence --- eventlet/hubs/hub.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eventlet/hubs/hub.py b/eventlet/hubs/hub.py index 41c3af0..e2053fc 100644 --- a/eventlet/hubs/hub.py +++ b/eventlet/hubs/hub.py @@ -291,7 +291,8 @@ class BaseHub(object): def schedule_call_global(self, seconds, cb, *args, **kw): """Schedule a callable to be called after 'seconds' seconds have - elapsed. The timer will NOT + elapsed. The timer will NOT be cancelled if the current greenlet has + exited before the timer fires. seconds: The number of seconds to wait. cb: The callable to call after the given time. *args: Arguments to pass to the callable when called.