move most of the generated files

This commit is contained in:
Maxim Kurnikov
2018-12-21 05:47:24 +03:00
parent 013b6ee538
commit d56ca8ea31
273 changed files with 139 additions and 1457 deletions

View File

@@ -0,0 +1,24 @@
from typing import Any, Optional
from django.core.handlers.wsgi import WSGIRequest
from django.http.response import (
Http404,
HttpResponseBadRequest,
HttpResponseForbidden,
HttpResponseNotFound,
HttpResponseServerError,
)
ERROR_404_TEMPLATE_NAME: str
ERROR_403_TEMPLATE_NAME: str
ERROR_400_TEMPLATE_NAME: str
ERROR_500_TEMPLATE_NAME: str
def page_not_found(
request: WSGIRequest, exception: Optional[Http404], template_name: str = ...
) -> HttpResponseNotFound: ...
def server_error(request: WSGIRequest, template_name: str = ...) -> HttpResponseServerError: ...
def bad_request(request: WSGIRequest, exception: Exception, template_name: str = ...) -> HttpResponseBadRequest: ...
def permission_denied(
request: WSGIRequest, exception: Exception, template_name: str = ...
) -> HttpResponseForbidden: ...