/usr/lib/python2.7/dist-packages/sekizai/context.py is in python-django-sekizai 0.10.0-2.
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 7 8 9 10 11 12 | from django.template import Context
from sekizai.context_processors import sekizai
class SekizaiContext(Context):
"""
An alternative context to be used instead of RequestContext in places where
no request is available.
"""
def __init__(self, *args, **kwargs):
super(SekizaiContext, self).__init__(*args, **kwargs)
self.update(sekizai())
|