mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Fixed #29296 -- Fixed crashes in admindocs when a view is a callable object.
This commit is contained in:
parent
ee17bb8a67
commit
33a0b7ac81
10 changed files with 37 additions and 7 deletions
|
|
@ -13,3 +13,8 @@ def xview(request):
|
|||
class XViewClass(View):
|
||||
def get(self, request):
|
||||
return HttpResponse()
|
||||
|
||||
|
||||
class XViewCallableObject(View):
|
||||
def __call__(self, request):
|
||||
return HttpResponse()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue