Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Django / core / context_processors.py
Size: Mime:
import warnings

from django.template.context_processors import *  # NOQA
from django.utils.deprecation import RemovedInDjango20Warning

warnings.warn(
    "django.core.context_processors is deprecated in favor of "
    "django.template.context_processors.",
    RemovedInDjango20Warning, stacklevel=2)