~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Luke Faraone, Jakub Wilk, Luke Faraone
  • Date: 2013-05-09 15:10:47 UTC
  • mfrom: (6.2.12 experimental)
  • Revision ID: package-import@ubuntu.com-20130509151047-g79qsrewg1yl43h5
Tags: 1.5.1-2
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Luke Faraone ]
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
urlpatterns = patterns('regressiontests.urlpatterns_reverse.views',
29
29
    url(r'^normal/$', 'empty_view', name='normal-view'),
30
30
    url(r'^normal/(?P<arg1>\d+)/(?P<arg2>\d+)/$', 'empty_view', name='normal-view'),
 
31
    url(r'^resolver_match/$', 'pass_resolver_match_view', name='test-resolver-match'),
31
32
 
32
33
    url(r'^\+\\\$\*/$', 'empty_view', name='special-view'),
33
34