Coverage for pydantic/experimental/__init__.py: 100.00%
3 statements
« prev ^ index » next coverage.py v7.9.2, created at 2025-07-20 16:49 +0000
« prev ^ index » next coverage.py v7.9.2, created at 2025-07-20 16:49 +0000
1"""The "experimental" module of pydantic contains potential new features that are subject to change."""
3import warnings 1abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNO
5from pydantic.warnings import PydanticExperimentalWarning 1abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNO
7warnings.warn( 1abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNO
8 'This module is experimental, its contents are subject to change and deprecation.',
9 category=PydanticExperimentalWarning,
10)