diff options
author | Brett Cannon <brett@python.org> | 2022-04-27 20:26:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 20:26:33 -0700 |
commit | 407c3afe1986f4c43cb0e68e28b90da30eebd738 (patch) | |
tree | 4ea6287ce59157321d1460bd2c8b54be50a4fb65 /Lib/uu.py | |
parent | f348154c8f8a9c254503306c59d6779d4d09b3a9 (diff) | |
download | cpython-407c3afe1986f4c43cb0e68e28b90da30eebd738.tar.gz cpython-407c3afe1986f4c43cb0e68e28b90da30eebd738.zip |
gh-91217: deprecate uu (GH-92009)
Automerge-Triggered-By: GH:brettcannon
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-x | Lib/uu.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/uu.py b/Lib/uu.py index 9f1f37f1a64..6f8805d8c5d 100755 --- a/Lib/uu.py +++ b/Lib/uu.py @@ -33,6 +33,9 @@ decode(in_file [, out_file, mode, quiet]) import binascii import os import sys +import warnings + +warnings._deprecated(__name__, remove=(3, 13)) __all__ = ["Error", "encode", "decode"] |