remove lru cache from body property

This commit is contained in:
Chester O'Neill 2019-09-20 14:57:23 -04:00 committed by GitHub
parent f576a6778f
commit 9a7929846c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,6 @@ requests.
"""
import asyncio
import functools
import logging
import os
import time
@ -85,7 +84,6 @@ class HTTPResponse:
return len(self)
@property
@functools.lru_cache(1)
def body(self):
"""Returns the HTTP response body, deserialized if possible.