Coverage for pydantic/experimental/__init__.py: 100.00%

3 statements  

« prev     ^ index     » next       coverage.py v7.8.1, created at 2025-05-22 20:36 +0000

1"""The "experimental" module of pydantic contains potential new features that are subject to change.""" 

2 

3import warnings 1abcdefghijklmnopqrstuvwxyzABCDEFGHI

4 

5from pydantic.warnings import PydanticExperimentalWarning 1abcdefghijklmnopqrstuvwxyzABCDEFGHI

6 

7warnings.warn( 1abcdefghijklmnopqrstuvwxyzABCDEFGHI

8 'This module is experimental, its contents are subject to change and deprecation.', 

9 category=PydanticExperimentalWarning, 

10)