...and I left in a couple of print statements. Removed them.
authorcatchjosh <catchjosh@ae587032-bbab-11de-869a-473eb4776397>
Sun, 18 Oct 2009 16:52:22 +0000 (16:52 +0000)
committercatchjosh <catchjosh@ae587032-bbab-11de-869a-473eb4776397>
Sun, 18 Oct 2009 16:52:22 +0000 (16:52 +0000)
git-svn-id: http://jsonrpclib.googlecode.com/svn/trunk@7 ae587032-bbab-11de-869a-473eb4776397

jsonrpclib.py

index c0bb381..19cb47d 100644 (file)
@@ -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,