[pypy-svn] r71686 - pypy/trunk/pypy/module/thread

fijal at codespeak.net fijal at codespeak.net
Wed Mar 3 03:30:50 CET 2010


Author: fijal
Date: Wed Mar  3 03:30:48 2010
New Revision: 71686

Modified:
   pypy/trunk/pypy/module/thread/os_thread.py
Log:
Avoid warnings during rtyping


Modified: pypy/trunk/pypy/module/thread/os_thread.py
==============================================================================
--- pypy/trunk/pypy/module/thread/os_thread.py	(original)
+++ pypy/trunk/pypy/module/thread/os_thread.py	Wed Mar  3 03:30:48 2010
@@ -62,6 +62,8 @@
     # The following lock is held whenever the fields
     # 'bootstrapper.w_callable' and 'bootstrapper.args' are in use.
     lock = None
+    args = None
+    w_callable = None
 
     def setup(space):
         if bootstrapper.lock is None:



More information about the Pypy-commit mailing list