8000 gh-92613: Add deprecation note to codecs docs for uuencode codec · CAM-Gerlach/cpython@c4a5e6f · GitHub
[go: up one dir, main page]

Skip to content

Commit c4a5e6f

Browse files
committed
pythongh-92613: Add deprecation note to codecs docs for uuencode codec
1 parent 9f8bb3c commit c4a5e6f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Doc/library/codecs.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,7 @@ to :class:`bytes` mappings. They are not supported by :meth:`bytes.decode`
14131413
| | quoted_printable | | :meth:`quopri.decode` |
14141414
+----------------------+------------------+------------------------------+------------------------------+
14151415
| uu_codec | uu | Convert the operand using | :meth:`uu.encode` / |
1416-
| | | uuencode. | :meth:`uu.decode` |
1416+
| | | uuencode (deprecated). | :meth:`uu.decode` |
14171417
+----------------------+------------------+------------------------------+------------------------------+
14181418
| zlib_codec | zip, zlib | Compress the operand using | :meth:`zlib.compress` / |
14191419
| | | gzip. | :meth:`zlib.decompress` |
@@ -1429,6 +1429,10 @@ to :class:`bytes` mappings. They are not supported by :meth:`bytes.decode`
14291429
.. versionchanged:: 3.4
14301430
Restoration of the aliases for the binary transforms.
14311431

1432+
.. deprecated-removed:: 3.11 3.13
1433+
The uuencode codec (``uu_codec``) is deprecated
1434+
(see :pep:`PEP 594 <594#uu-and-the-uu-encoding>` for details).
1435+
14321436

14331437
.. _text-transforms:
14341438

0 commit comments

Comments
 (0)
0