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/common_descriptors.py

27 lines
866 B
Python
Raw Normal View History

2022-07-22 12:43:59 +02:00
import typing as t
import warnings
class CommonRequestDescriptorsMixin:
def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
warnings.warn(
"'CommonRequestDescriptorsMixin' is deprecated and will be"
" removed in Werkzeug 2.1. 'Request' now includes the"
" functionality directly.",
DeprecationWarning,
stacklevel=2,
)
super().__init__(*args, **kwargs)
class CommonResponseDescriptorsMixin:
def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
warnings.warn(
"'CommonResponseDescriptorsMixin' is deprecated and will be"
" removed in Werkzeug 2.1. 'Response' now includes the"
" functionality directly.",
DeprecationWarning,
stacklevel=2,
)
super().__init__(*args, **kwargs)