File: good_error_handler_deferred_annotations.py

package info (click to toggle)
python-django 3%3A6.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 62,040 kB
  • sloc: python: 372,133; javascript: 19,376; xml: 211; makefile: 204; sh: 28
file content (15 lines) | stat: -rw-r--r-- 451 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from django.http.request import HttpRequest

urlpatterns = []

handler400 = __name__ + ".good_handler_deferred_annotations"
handler403 = __name__ + ".good_handler_deferred_annotations"
handler404 = __name__ + ".good_handler_deferred_annotations"
handler500 = __name__ + ".good_handler_deferred_annotations"


def good_handler_deferred_annotations(request: HttpRequest, exception=None):
    pass