def send_error(self, cid, msg, reason="unknown", tb=None, cast=False, errno=errors.NOT_SPECIFIED): resp = error(reason=reason, tb=tb, errno=errno) self.send_response(cid, msg, resp, cast=cast)
def send_error(self, cid, msg, reason="unknown", tb=None, cast=False): resp = error(reason=reason, tb=tb) self.send_response(cid, msg, resp, cast=cast)