From a36fcbf30bccc28203b0901919ef99e3ddd978d9 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Wed, 24 Feb 2010 00:43:55 -0500 Subject: [PATCH] Patch local and stack_size in threading. --- eventlet/green/threading.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eventlet/green/threading.py b/eventlet/green/threading.py index b2ce428..a8c1668 100644 --- a/eventlet/green/threading.py +++ b/eventlet/green/threading.py @@ -2,7 +2,8 @@ from eventlet import patcher from eventlet.green import thread from eventlet.green import time -__patched__ = ['_start_new_thread', '_allocate_lock', '_get_ident', '_sleep'] +__patched__ = ['_start_new_thread', '_allocate_lock', '_get_ident', '_sleep', + 'local', 'stack_size'] patcher.inject('threading', globals(),