|
@@ -43,7 +43,6 @@ class Response(res):
|
|
|
self._cached_selector = None
|
|
|
self._cached_text = None
|
|
|
self._cached_json = None
|
|
|
- self._cached_content = None
|
|
|
|
|
|
self._encoding = None
|
|
|
|
|
@@ -270,13 +269,8 @@ class Response(res):
|
|
|
|
|
|
@property
|
|
|
def content(self):
|
|
|
- if self._cached_content is None:
|
|
|
- self._cached_content = super(Response, self).content
|
|
|
- return self._cached_content
|
|
|
-
|
|
|
- @content.setter
|
|
|
- def content(self, obj_bytes):
|
|
|
- self._cached_content = obj_bytes
|
|
|
+ content = super(Response, self).content
|
|
|
+ return content
|
|
|
|
|
|
@property
|
|
|
def is_html(self):
|