Opened 23 months ago
Last modified 23 months ago
#34482 closed Bug
Unable to access non-picklable attributes of HttpRequest and HttpResponse objects after shallow copy. — at Initial Version
Description ¶
Trying to access the non-picklable attributes of HttpRequest
object after shallow copy leads to an AttributeError
.
Example:
request = HttpRequest() request_copy = copy(request) match = request_copy.resolver_match AttributeError: 'WSGIRequest' object has no attribute 'resolver_match'
Note:
See TracTickets
for help on using tickets.