[pypy-svn] r56148 - pypy/branch/async-del/pypy/module/signal

arigo at codespeak.net arigo at codespeak.net
Sat Jun 28 12:25:13 CEST 2008


Author: arigo
Date: Sat Jun 28 12:25:13 2008
New Revision: 56148

Modified:
   pypy/branch/async-del/pypy/module/signal/interp_signal.py
Log:
Fix.


Modified: pypy/branch/async-del/pypy/module/signal/interp_signal.py
==============================================================================
--- pypy/branch/async-del/pypy/module/signal/interp_signal.py	(original)
+++ pypy/branch/async-del/pypy/module/signal/interp_signal.py	Sat Jun 28 12:25:13 2008
@@ -122,7 +122,7 @@
     thread switch until we land in the main thread.
     """
 
-    def perform(self):
+    def perform(self, executioncontext):
         main_ec = self.space.threadlocals.getmainthreadvalue()
         if executioncontext is main_ec:
             # now running in the main thread: we can really report the signals



More information about the Pypy-commit mailing list