diff --git a/django/template/context.py b/django/template/context.py
index 1f13659..24c0dfd 100644
a
|
b
|
|
1 | | from django.conf import settings |
2 | | from django.core.exceptions import ImproperlyConfigured |
3 | | from django.utils.importlib import import_module |
4 | | |
5 | 1 | _standard_context_processors = None |
6 | 2 | |
7 | 3 | class ContextPopException(Exception): |
… |
… |
class Context(object):
|
71 | 67 | # This is a function rather than module-level procedural code because we only |
72 | 68 | # want it to execute if somebody uses RequestContext. |
73 | 69 | def get_standard_processors(): |
| 70 | from django.conf import settings |
| 71 | from django.core.exceptions import ImproperlyConfigured |
| 72 | from django.utils.importlib import import_module |
74 | 73 | global _standard_context_processors |
75 | 74 | if _standard_context_processors is None: |
76 | 75 | processors = [] |