improved version

This commit is contained in:
Maxim Kurnikov
2018-07-29 20:06:41 +03:00
parent c180555415
commit 89bb6eac75
160 changed files with 1007 additions and 607 deletions

View File

@@ -1,10 +1,7 @@
from typing import (
Callable,
Union,
)
from typing import Callable
def cache_page(timeout: Union[float, int], *, cache = ..., key_prefix = ...) -> Callable: ...
def cache_page(timeout: float, *, cache = ..., key_prefix = ...) -> Callable: ...
def never_cache(view_func: Callable) -> Callable: ...