Created
April 23, 2025 22:43
-
-
Save mypy-play/9558d65312b99c1ac2a28863ffadde33 to your computer and use it in GitHub Desktop.
Shared via mypy Playground
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing_extensions import deprecated | |
@deprecated("foo") | |
def bar() -> None: ... | |
bar() | |
@deprecated("the baz function is deprecated") | |
def baz() -> None: ... | |
baz() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment