(self, rpc_call_list)
| 159 | return response['result'] |
| 160 | |
| 161 | def _batch(self, rpc_call_list): |
| 162 | postdata = json.dumps(list(rpc_call_list), default=EncodeDecimal, ensure_ascii=self.ensure_ascii) |
| 163 | log.debug("--> "+postdata) |
| 164 | return self._request('POST', self.__url.path, postdata.encode('utf-8')) |
| 165 | |
| 166 | def _get_response(self): |
| 167 | try: |