diff --git a/django/core/context_processors.py b/django/core/context_processors.py deleted file mode 100644 index f106439f12..0000000000 --- a/django/core/context_processors.py +++ /dev/null @@ -1,9 +0,0 @@ -import warnings - -from django.template.context_processors import * # NOQA -from django.utils.deprecation import RemovedInDjango110Warning - -warnings.warn( - "django.core.context_processors is deprecated in favor of " - "django.template.context_processors.", - RemovedInDjango110Warning, stacklevel=2)