From ed6a23780a76d8032b5f093daee25037afe51d4f Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Mon, 30 Aug 2010 11:58:42 -0700 Subject: [PATCH] Including blocking detector in the documentation. --- eventlet/debug.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eventlet/debug.py b/eventlet/debug.py index 76528ed..c89373d 100644 --- a/eventlet/debug.py +++ b/eventlet/debug.py @@ -9,7 +9,8 @@ import inspect __all__ = ['spew', 'unspew', 'format_hub_listeners', 'format_hub_timers', 'hub_listener_stacks', 'hub_exceptions', 'tpool_exceptions', - 'hub_prevent_multiple_readers', 'hub_timer_stacks'] + 'hub_prevent_multiple_readers', 'hub_timer_stacks', + 'hub_blocking_detection'] _token_splitter = re.compile('\W+')