(self, response)
| 1180 | #custom transport, stores the response length for our perusal |
| 1181 | fake_gzip = False |
| 1182 | def parse_response(self, response): |
| 1183 | self.response_length=int(response.getheader("content-length", 0)) |
| 1184 | return xmlrpclib.Transport.parse_response(self, response) |
| 1185 | |
| 1186 | def send_content(self, connection, body): |
| 1187 | if self.fake_gzip: |