forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-92613: Add News entry for uuencode deprecations
- Loading branch information
1 parent
aabe333
commit b3ce329
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
Misc/NEWS.d/next/Library/2022-05-12-22-05-49.gh-issue-92613.yQjMHl.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Per :pep:`PEP 594 <594#uu-and-the-uu-encoding>`, deprecate other | ||
uuencode-related functionality with appropriate warnings, and document them. | ||
This includes :func:`binascii.a2b_uu`/:func:`binascii.b2a_uu`, | ||
the ``uu_codec`` :ref:`binary transform <binary-transforms>` | ||
in the :mod:`codecs` module, and support for decoding uuencode payloads | ||
with the :meth:`email.message.Message.get_payload` method of the legacy | ||
:ref:`email.message.Message <compat32_message>` (``Compat32``) API. | ||
Contributed by C.A.M. Gerlach. |