diff options
author | Brett Cannon <brett@python.org> | 2022-04-28 03:26:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 03:26:33 (GMT) |
commit | 407c3afe1986f4c43cb0e68e28b90da30eebd738 (patch) | |
tree | 4ea6287ce59157321d1460bd2c8b54be50a4fb65 /Lib/uu.py | |
parent | f348154c8f8a9c254503306c59d6779d4d09b3a9 (diff) | |
download | cpython-407c3afe1986f4c43cb0e68e28b90da30eebd738.zip cpython-407c3afe1986f4c43cb0e68e28b90da30eebd738.tar.gz cpython-407c3afe1986f4c43cb0e68e28b90da30eebd738.tar.bz2 |
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
@@ -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"] |