8000 gh-92613: Deprecate other uuencode functionality per PEP 594 & document as such by CAM-Gerlach · Pull Request #92758 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-92613: Deprecate other uuencode functionality per PEP 594 & document as such #92758

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gh-92613: Add deprecation note for uuencode functions to binascii doc 8000 s
  • Loading branch information
CAM-Gerlach committed Nov 8, 2022
commit aabe3332fd1ac9064099f04d72d4de882526ec7c
8 changes: 8 additions & 0 deletions Doc/library/binascii.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ The :mod:`binascii` module defines the following functions:
data. Lines normally contain 45 (binary) bytes, except for the last line. Line
data may be followed by whitespace.

.. deprecated-removed:: 3.11 3.13
This function and the legacy uuencode format it implements are deprecated
(see :pep:`PEP 594 <594#uu-and-the-uu-encoding>` for details).


.. function:: b2a_uu(data, *, backtick=False)

Expand All @@ -48,6 +52,10 @@ The :mod:`binascii` module defines the following functions:
.. versionchanged:: 3.7
Added the *backtick* parameter.

.. deprecated-removed:: 3.11 3.13
This function and the legacy uuencode format it implements are deprecated
(see :pep:`PEP 594 <594#uu-and-the-uu-encoding>` for details).


.. function:: a2b_base64(string, /, *, strict_mode=False)

Expand Down
0