This file is indexed.

/usr/share/pyshared/localeurl/urls.py is in python-django-localeurl 1.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
from django.conf.urls.defaults import *
from localeurl.views import change_locale

urlpatterns = patterns('',
	url(r'^change/', change_locale, name='localeurl_change_locale'),
)