[py-svn] r10873 - py/dist/py/execnet

hpk at codespeak.net hpk at codespeak.net
Tue Apr 19 20:59:23 CEST 2005


Author: hpk
Date: Tue Apr 19 20:59:23 2005
New Revision: 10873

Modified:
   py/dist/py/execnet/gateway.py
Log:
don't wait for finished exec threads 


Modified: py/dist/py/execnet/gateway.py
==============================================================================
--- py/dist/py/execnet/gateway.py	(original)
+++ py/dist/py/execnet/gateway.py	Tue Apr 19 20:59:23 2005
@@ -55,12 +55,7 @@
                                                    R, S, i) 
 
     def _local_trystopexec(self):
-        try: 
-            self._execpool.shutdown() 
-        except IOError: 
-            return False 
-        return True
-
+        self._execpool.shutdown() 
 
     def trace(self, *args):
         if debug:



More information about the pytest-commit mailing list