~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to tests/regressiontests/urlpatterns_reverse/views.py

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2009-07-29 11:26:28 UTC
  • mfrom: (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20090729112628-9qrzwnl9x32jxhbg
Tags: upstream-1.1
ImportĀ upstreamĀ versionĀ 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
def empty_view(request, *args, **kwargs):
 
2
    pass
 
3
 
 
4
def kwargs_view(request, arg1=1, arg2=2):
 
5
    pass
 
6
 
 
7
def absolute_kwargs_view(request, arg1=1, arg2=2):
 
8
    pass