1
0
mirror of https://github.com/django/django.git synced 2024-11-18 23:44:22 +00:00
django/tests/regressiontests/urlpatterns_reverse/views.py
Malcolm Tredinnick 15b0158e39 Fixed #9038 -- Correctly handle URL patterns with the same name (or view name),
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
2008-09-27 06:14:11 +00:00

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