summaryrefslogtreecommitdiffstats
path: root/Lib/uu.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2022-04-28 03:26:33 (GMT)
committerGitHub <noreply@github.com>2022-04-28 03:26:33 (GMT)
commit407c3afe1986f4c43cb0e68e28b90da30eebd738 (patch)
tree4ea6287ce59157321d1460bd2c8b54be50a4fb65 /Lib/uu.py
parentf348154c8f8a9c254503306c59d6779d4d09b3a9 (diff)
downloadcpython-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-xLib/uu.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/uu.py b/Lib/uu.py
index 9f1f37f..6f8805d 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"]