Home
last modified time | relevance | path

Searched refs:encode_threshold (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/xmlrpc/
Dserver.py446 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler
535 if self.encode_threshold is not None:
536 if len(response) > self.encode_threshold:
Dclient.py1142 encode_threshold = None #None = don't encode variable in Transport
1314 if (self.encode_threshold is not None and
1315 self.encode_threshold < len(request_body) and
/third_party/python/Lib/test/
Dtest_xmlrpc.py1170 t.encode_threshold = None
1174 t.encode_threshold = 0 #turn on request encoding
1182 t.encode_threshold = None
1194 old = self.requestHandler.encode_threshold
1195 self.requestHandler.encode_threshold = None #no encoding
1198 self.requestHandler.encode_threshold = 0 #always encode
1202 self.requestHandler.encode_threshold = old
/third_party/python/Doc/whatsnew/
D2.7.rst1701 controlled by the :attr:`encode_threshold` attribute of