(self, connection, body)
| 1184 | return xmlrpclib.Transport.parse_response(self, response) |
| 1185 | |
| 1186 | def send_content(self, connection, body): |
| 1187 | if self.fake_gzip: |
| 1188 | #add a lone gzip header to induce decode error remotely |
| 1189 | connection.putheader("Content-Encoding", "gzip") |
| 1190 | return xmlrpclib.Transport.send_content(self, connection, body) |
| 1191 | |
| 1192 | def setUp(self): |
| 1193 | BaseServerTestCase.setUp(self) |