This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-02-01/mockenv/lib/python3.6/site-packages/werkzeug/wrappers/auth.py
2022-07-22 16:13:59 +05:30

27 lines
824 B
Python

import typing as t
import warnings
class AuthorizationMixin:
def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
warnings.warn(
"'AuthorizationMixin' is deprecated and will be removed in"
" Werkzeug 2.1. 'Request' now includes the functionality"
" directly.",
DeprecationWarning,
stacklevel=2,
)
super().__init__(*args, **kwargs)
class WWWAuthenticateMixin:
def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
warnings.warn(
"'WWWAuthenticateMixin' is deprecated and will be removed"
" in Werkzeug 2.1. 'Response' now includes the"
" functionality directly.",
DeprecationWarning,
stacklevel=2,
)
super().__init__(*args, **kwargs)