Its default type is `Tuple[str, str, str, str, str, str, str]`, which
can only be overridden by a tuple of the exact same length.
This change originated in #3354 (thanks alexmv and andersk).
Closes #3354
"""
- SUPPORTED_METHODS = ("GET", "HEAD", "POST", "DELETE", "PATCH", "PUT", "OPTIONS")
+ SUPPORTED_METHODS: Tuple[str, ...] = (
+ "GET",
+ "HEAD",
+ "POST",
+ "DELETE",
+ "PATCH",
+ "PUT",
+ "OPTIONS",
+ )
_template_loaders = {} # type: Dict[str, template.BaseLoader]
_template_loader_lock = threading.Lock()