/usr/local/lib/python3.9/site-packages/django/contrib/messages/storage
from django.conf import settings from django.utils.module_loading import import_string def default_storage(request): """ Callable with the same interface as the storage classes. This isn't just default_storage = import_string(settings.MESSAGE_STORAGE) to avoid accessing the settings at the module level. """ return import_string(settings.MESSAGE_STORAGE)(request)
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
base.py
Edit
cookie.py
Edit
fallback.py
Edit
session.py
Edit