Package gyropy :: Module g_proxy :: Class Connection
[frames] | no frames]

Class Connection

source code


You need to call close().

Instance Methods
 
__init__(self, wfd, rfd, stderr, stdout)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
send(self, op, boxid, args, proxy=MAYBE) source code
 
close_wfd(self)
Called as part of the QUIT sequence.
source code
 
remote_remove_from_store(self, oid) source code
 
remote_test(self, i) source code
 
remote_setattr(self, objid, k, v) source code
 
remote_delattr(self, objid, k) source code
 
remote_getattr(self, objid, k) source code
 
remote_call(self, objid, a, kw) source code
 
remote_call_method(self, objid, aname, a, kw) source code
 
remote_import_mod(self, name, path)
Import a module from the specified path, or, failing that, look in sys.path then for a builtin.
source code
 
remote_globals(self) source code
 
remote_get_classinfo(self, cloid)
Gets information about obj.__class__.
source code
 
serve(self) source code
 
close(self) source code
 
terminate(self) source code
 
__del__(self) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables
  sys = sys
Properties

Inherited from object: __class__

Method Details

__init__(self, wfd, rfd, stderr, stdout)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

remote_import_mod(self, name, path)

source code 

Import a module from the specified path, or, failing that, look in sys.path then for a builtin. If path is None, only look in the remote machine's sys.path and builtins. If path is an array containing None, replace the None with the remote machine's sys.path.