1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fixed #32969 -- Fixed pickling HttpResponse and subclasses.

This commit is contained in:
Anv3sh
2022-06-16 21:34:13 +05:30
committed by Mariusz Felisiak
parent 901a169198
commit d7f5bfd241
7 changed files with 51 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ from . import views
urlpatterns = [
path("upload_view/", views.upload_view, name="upload_view"),
path("get_view/", views.get_view, name="get_view"),
path("cbv_view/", views.CBView.as_view()),
path("post_view/", views.post_view),
path("post_then_get_view/", views.post_then_get_view),
path("put_view/", views.put_view),