(self, response)
| 1185 | #custom transport, stores the response length for our perusal |
| 1186 | fake_gzip = False |
| 1187 | def parse_response(self, response): |
| 1188 | self.response_length=int(response.getheader("content-length", 0)) |
| 1189 | return xmlrpclib.Transport.parse_response(self, response) |
| 1190 | |
| 1191 | def send_content(self, connection, body): |
| 1192 | if self.fake_gzip: |