diff options
author | Brett Cannon <brett@python.org> | 2022-04-25 23:26:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 23:26:43 (GMT) |
commit | d174ebe91ebc9f7388a22cc81cdc5f7be8bb8c9b (patch) | |
tree | 9d980ed8ab186c2bb4b0c4e16465c995e901857e /Lib/sunau.py | |
parent | cd5726fe674eaff442510eeb6c75628858be9e9f (diff) | |
download | cpython-d174ebe91ebc9f7388a22cc81cdc5f7be8bb8c9b.zip cpython-d174ebe91ebc9f7388a22cc81cdc5f7be8bb8c9b.tar.gz cpython-d174ebe91ebc9f7388a22cc81cdc5f7be8bb8c9b.tar.bz2 |
gh-91217: deprecate sunau (GH-91866)
Diffstat (limited to 'Lib/sunau.py')
-rw-r--r-- | Lib/sunau.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/sunau.py b/Lib/sunau.py index 9b3533d..94c42f1 100644 --- a/Lib/sunau.py +++ b/Lib/sunau.py @@ -106,6 +106,8 @@ is destroyed. from collections import namedtuple import warnings +warnings._deprecated(__name__, remove=(3, 13)) + _sunau_params = namedtuple('_sunau_params', 'nchannels sampwidth framerate nframes comptype compname') |