From: catchjosh Date: Sun, 18 Oct 2009 16:52:22 +0000 (+0000) Subject: ...and I left in a couple of print statements. Removed them. X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-jsonrpclib.git/commitdiff_plain/b2a4ba47c80af3bd11c3a1fd68c1ea579e23092e ...and I left in a couple of print statements. Removed them. git-svn-id: http://jsonrpclib.googlecode.com/svn/trunk@7 ae587032-bbab-11de-869a-473eb4776397 --- diff --git a/jsonrpclib.py b/jsonrpclib.py index c0bb381..19cb47d 100644 --- a/jsonrpclib.py +++ b/jsonrpclib.py @@ -156,7 +156,6 @@ class ServerProxy(XMLServerProxy): def __notify(self, methodname, params, rpcid=None): request = dumps(params, methodname, encoding=self.__encoding, rpcid=rpcid, version=self.__version, notify=True) - print request response = self.__run_request(request, notify=True) return @@ -164,8 +163,6 @@ class ServerProxy(XMLServerProxy): global _last_request global _last_response _last_request = request - - print request response = self.__transport.request( self.__host,