Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/check_framework/urls/no_warnings.py
blob: 773ad27ef19ce8d3f4060f2c0ebc745b6e319cb6 (plain)
1
2
3
4
5
6
7
8
9
from django.conf.urls import include, url

urlpatterns = [
    url(r'^foo/', lambda x: x, name='foo'),
    # This dollar is ok as it is escaped
    url(r'^\$', include([
        url(r'^bar/$', lambda x: x, name='bar'),
    ])),
]