From e634a5d460aebe4f0181ebf3fe9534b300475539 Mon Sep 17 00:00:00 2001 From: Ethan Smith Date: Sun, 19 May 2019 09:59:14 -0700 Subject: [PATCH] Re-export names from django.core.cache.backend.base (#71) --- django-stubs/core/cache/__init__.pyi | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/django-stubs/core/cache/__init__.pyi b/django-stubs/core/cache/__init__.pyi index e198142..7652696 100644 --- a/django-stubs/core/cache/__init__.pyi +++ b/django-stubs/core/cache/__init__.pyi @@ -1,7 +1,11 @@ from collections import OrderedDict from typing import Any, Callable, Dict, Union -from .backends.base import BaseCache as BaseCache +from .backends.base import ( + BaseCache as BaseCache, + CacheKeyWarning as CacheKeyWarning, + InvalidCacheBackendError as InvalidCacheBackendError, +) DEFAULT_CACHE_ALIAS: str