mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
69d1e71fad
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13497 bcc190cf-cafb-0310-a4f2-bffc1f526a37
15 lines
288 B
Python
15 lines
288 B
Python
def empty_view(request, *args, **kwargs):
|
|
pass
|
|
|
|
def kwargs_view(request, arg1=1, arg2=2):
|
|
pass
|
|
|
|
def absolute_kwargs_view(request, arg1=1, arg2=2):
|
|
pass
|
|
|
|
class ViewClass(object):
|
|
def __call__(self, request, *args, **kwargs):
|
|
pass
|
|
|
|
view_class_instance = ViewClass()
|