From 0c55062e74d6ac8c000ad97687605e48d0458306 Mon Sep 17 00:00:00 2001 From: hpk Date: Fri, 2 Feb 2007 02:05:31 +0100 Subject: [PATCH] [svn r37786] improve docstring --HG-- branch : trunk --- py/execnet/gateway.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/py/execnet/gateway.py b/py/execnet/gateway.py index 35100368e..8387b1319 100644 --- a/py/execnet/gateway.py +++ b/py/execnet/gateway.py @@ -202,6 +202,10 @@ class Gateway(object): """ return channel object for communicating with the asynchronously executing 'source' code which will have a corresponding 'channel' object in its executing namespace. + + You may provide callback functions 'stdout' and 'stderr' + which will get called with the remote stdout/stderr output + piece by piece. """ try: source = str(Source(source))