Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

hemamaps / Django   python

Repository URL to install this package:

/ core / context_processors.py

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)