From d1c7d9149d1f530f7fd1217b1f332939091ba66e Mon Sep 17 00:00:00 2001 From: Antoine Millet Date: Mon, 20 Dec 2010 16:45:49 +0100 Subject: [PATCH] Update docstring of RpcConnection.from_addr constructor. --- sjrpc/core/rpcconnection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sjrpc/core/rpcconnection.py b/sjrpc/core/rpcconnection.py index d5d4983..2609aca 100644 --- a/sjrpc/core/rpcconnection.py +++ b/sjrpc/core/rpcconnection.py @@ -66,11 +66,11 @@ class RpcConnection(object): :param addr: the target ip address :param port: the target port + :param manager: manager of this connection :param enable_ssl: enable SSL :param cert: is SSL is enabled, profile the filename of certificate to check. If None, don't check certificate. - :param *args: parameters to pass to the standard constructor - :param **kwargs: keyword parameters to pass to the standard constructor + :param handler: Handler to attach to this :class:`RpcConnection` object ''' sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) -- GitLab