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

Corrected [13479], accounting for unnamed urls that are instances of classes.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13497 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee
2010-08-06 13:47:56 +00:00
parent 75ac6c26da
commit 69d1e71fad
5 changed files with 27 additions and 1 deletions

View File

@@ -6,3 +6,9 @@ def kwargs_view(request, arg1=1, arg2=2):
def absolute_kwargs_view(request, arg1=1, arg2=2):
pass
class ViewClass(object):
def __call__(self, request, *args, **kwargs):
pass
view_class_instance = ViewClass()