"""
URLpatterns for the debug toolbar.
These should not be loaded explicitly; the debug toolbar middleware will patch
this into the urlconf for the request.
"""fromdjango.conf.urls.defaultsimport*fromdjango.contribimportadminadmin.autodiscover()urlpatterns=patterns('',url(r'^execute_sql/$','debug_toolbar.tests.views.execute_sql'),)