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

« back to all changes in this revision

Viewing changes to tests/urlpatterns_reverse/included_named_urls2.py

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2014-09-17 14:15:11 UTC
  • mfrom: (1.3.17) (6.2.18 experimental)
  • Revision ID: package-import@ubuntu.com-20140917141511-icneokthe9ww5sk4
Tags: 1.7-2
* Release to unstable.
* Add a migrate-south sample script to help users apply their South
  migrations. Thanks to Brian May.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from __future__ import absolute_import
2
 
 
3
1
from django.conf.urls import patterns, url
4
2
 
5
3
from .views import empty_view
10
8
    url(r'^extra/(?P<extra>\w+)/$', empty_view, name="named-url6"),
11
9
    url(r'^(?P<one>\d+)|(?P<two>\d+)/$', empty_view),
12
10
)
13