Ë
    7G¥i&  ã                   ó*   — d Z ddl­ ddlmZ ddlmZ y)ax  Deprecation tooling for Python functions and classes.

This package provides a simple decorator-based approach to deprecate functions,
methods, and classes while automatically forwarding calls to their replacements.

Main Features:
    - Automatic call forwarding to new implementations
    - Argument mapping and renaming
    - Customizable warning messages and streams
    - Per-function and per-argument warning tracking
    - Support for multiple deprecation levels
    - Testing utilities for deprecated code

Quick Example:
    >>> from deprecate import deprecated
    >>>
    >>> def new_function(x: int) -> int:
    ...     return x * 2
    >>>
    >>> @deprecated(target=new_function, deprecated_in="1.0", remove_in="2.0")
    ... def old_function(x: int) -> int:
    ...     pass  # Calls forwarded to new_function
    >>>
    >>> result = old_function(5)  # Shows warning, returns 10

Exported Functions:
    deprecated: Main decorator for marking functions/classes as deprecated
    void: Helper function to silence IDE warnings about unused parameters

For detailed examples and use cases, see: https://borda.github.io/pyDeprecate
é    )Ú*)Ú
deprecated)ÚvoidN)Ú__doc__Údeprecate.__about__Údeprecate.deprecationr   Údeprecate.utilsr   © ó    úb/home/nelsen/Projects/HRI/fr-in-the-cloud/.venv/lib/python3.12/site-packages/deprecate/__init__.pyú<module>r      s   ðñô@ "Ý ,Þ  r   