mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
15b0158e39
declared independently and that differ only by argument signatures. Patch from Russell Keith-Magee. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9087 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
164 B
Python
9 lines
164 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
|