From 1a033df99cb8eede992d9d63edb1d62db30f664a Mon Sep 17 00:00:00 2001 From: donovan Date: Wed, 21 May 2008 10:59:28 -0700 Subject: [PATCH] Ok, maybe the if False was there for a reason, pollhub seems broken at the moment --- eventlet/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventlet/api.py b/eventlet/api.py index 8882399..d446cdd 100644 --- a/eventlet/api.py +++ b/eventlet/api.py @@ -305,7 +305,7 @@ def get_default_hub(): pass import select - if hasattr(select, 'poll'): + if False: #hasattr(select, 'poll'): pollhub is broken at the moment import eventlet.hubs.poll return eventlet.hubs.poll else: