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
gh-92613: Deprecate other uuencode functionality per PEP 594 & document as such #92758
base: main
Are you sure you want to change the base?
Conversation
@warsaw , I've tagged you on behalf of the |
Per #92613 , for the following functionality deprecated by PEP 594 (PEP-594) but not formally implemented due to an oversight:
binascii.a2b_uu
andbinascii.b2a_uu
for decoding and encoding uuencode datauu_codec
binary transform in thecodecs
module, implementing uuencode as a Python codecget_payload()
method of the legacyemail.message.Message
(compat32
) APIThis PR adds missing:
Fixes #92613