diff options
author | Brett Cannon <brett@python.org> | 2022-04-05 12:05:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 12:05:48 -0700 |
commit | c1d93b6411f975d67e43942f1a2745a22983c18c (patch) | |
tree | cccdd369da191fa03268967013d60369ab48fcdf /Lib/aifc.py | |
parent | 944f09adfcc59f54432ac2947cf95f3465d90e1e (diff) | |
download | cpython-c1d93b6411f975d67e43942f1a2745a22983c18c.tar.gz cpython-c1d93b6411f975d67e43942f1a2745a22983c18c.zip |
bpo-47061: deprecate the `aifc` module (GH-32134)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Lib/aifc.py')
-rw-r--r-- | Lib/aifc.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/aifc.py b/Lib/aifc.py index d50f258e1ac..b5eab9215d6 100644 --- a/Lib/aifc.py +++ b/Lib/aifc.py @@ -140,6 +140,10 @@ import warnings __all__ = ["Error", "open"] + +warnings._deprecated(__name__, remove=(3, 13)) + + class Error(Exception): pass |