From fb7b4084e992ef209fc118e1d39fd5470372c688 Mon Sep 17 00:00:00 2001 From: xxz-sgschaccount Date: Fri, 17 Jul 2026 11:58:16 +0800 Subject: [PATCH] Update binascii.rst uuencoded should be unencoded --- Doc/library/binascii.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst index ceb80a35a1a76bb..21512b036086c8b 100644 --- a/Doc/library/binascii.rst +++ b/Doc/library/binascii.rst @@ -33,7 +33,7 @@ The :mod:`!binascii` module defines the following functions: .. function:: a2b_uu(string) - Convert a single line of uuencoded data back to binary and return the binary + Convert a single line of unencoded data back to binary and return the binary data. Lines normally contain 45 (binary) bytes, except for the last line. Line data may be followed by whitespace.