[pypy-svn] r16543 - pypy/dist/pypy/module/thread

arigo at codespeak.net arigo at codespeak.net
Thu Aug 25 20:13:53 CEST 2005


Author: arigo
Date: Thu Aug 25 20:13:52 2005
New Revision: 16543

Modified:
   pypy/dist/pypy/module/thread/os_thread.py
Log:
Oups.  This line was propagating space-or-None annotations all over PyPy.
That's an extreme un-optimization.


Modified: pypy/dist/pypy/module/thread/os_thread.py
==============================================================================
--- pypy/dist/pypy/module/thread/os_thread.py	(original)
+++ pypy/dist/pypy/module/thread/os_thread.py	Thu Aug 25 20:13:52 2005
@@ -25,7 +25,6 @@
             # release ownership of these objects before we release the GIL
             self.args       = None
             self.w_callable = None
-            self.space      = None
             # at this point the thread should only have a reference to
             # an empty 'self'.  We hold the last reference to 'self'; indeed,
             # the parent thread already forgot about it because the above



More information about the Pypy-commit mailing list