From: Hannes Ljungberg Date: Fri, 16 Apr 2021 19:05:34 +0000 (+0200) Subject: Drop Response.call_next leftover attribute (#1578) X-Git-Tag: 0.18.0~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed19995747ff4b421e009a276f5983b5264a04dc;p=thirdparty%2Fhttpx.git Drop Response.call_next leftover attribute (#1578) --- diff --git a/httpx/_models.py b/httpx/_models.py index bd1ef638..bf3ac24e 100644 --- a/httpx/_models.py +++ b/httpx/_models.py @@ -918,8 +918,6 @@ class Response: # the client will set `response.next_request`. self.next_request: typing.Optional[Request] = None - self.call_next: typing.Optional[typing.Callable] = None - self.extensions = {} if extensions is None else extensions self.history = [] if history is None else list(history)