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

hpk at codespeak.net hpk at codespeak.net
Tue Nov 9 16:28:57 CET 2004


Author: hpk
Date: Tue Nov  9 16:28:57 2004
New Revision: 7199

Modified:
   py/dist/py/execnet/channel.py
Log:
correction to the doc strings for channels 



Modified: py/dist/py/execnet/channel.py
==============================================================================
--- py/dist/py/execnet/channel.py	(original)
+++ py/dist/py/execnet/channel.py	Tue Nov  9 16:28:57 2004
@@ -44,7 +44,7 @@
         self._closeevent.set()
 
     def newchannel(self):
-        """ return a new channel whose life cycle depends on this channel. """
+        """ return a new channel. """ 
         chan = self.gateway.channelfactory.new()
         return chan
 
@@ -59,7 +59,7 @@
         """ wait until this channel is closed.  Note that a closed
         channel may still hold items that can be received or 
         send. Also note that exceptions from the other side will be 
-        reraised as gateway.ExecutionFailed exceptions containing 
+        reraised as gateway.RemoteError exceptions containing 
         a textual representation of the remote traceback. 
         """
         self._closeevent.wait(timeout=timeout) 
@@ -83,7 +83,7 @@
         """receives an item that was sent from the other side, 
         possibly blocking if there is none. 
         Note that exceptions from the other side will be 
-        reraised as gateway.ExecutionFailed exceptions containing 
+        reraised as gateway.RemoteError exceptions containing 
         a textual representation of the remote traceback. 
         """
         x = self._items.get() 



More information about the pytest-commit mailing list