__init__.py 328 B

12345678910
  1. """The "experimental" module of pydantic contains potential new features that are subject to change."""
  2. import warnings
  3. from pydantic.warnings import PydanticExperimentalWarning
  4. warnings.warn(
  5. 'This module is experimental, its contents are subject to change and deprecation.',
  6. category=PydanticExperimentalWarning,
  7. )