mirror of
https://github.com/django/django.git
synced 2024-12-27 03:25:58 +00:00
9e95d6f604
handed exceptions with non-ASCII bytestring data and no working unicode method under Python 2.6 and higher. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12621 bcc190cf-cafb-0310-a4f2-bffc1f526a37
6 lines
179 B
Python
6 lines
179 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('regressiontests.debug.views',
|
|
url(r'view_exception/(?P<n>\d+)/$', 'view_exception', name='view_exception'),
|
|
)
|