This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author LawfulEvil
Recipients LawfulEvil
Date 2017-04-19.18:22:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1492626140.89.0.479583121087.issue30103@psf.upfronthosting.co.za>
In-reply-to
Content
Looking in the man pages for the uuencode and uudecode (http://www.manpagez.com/man/5/uuencode/), I see that the encoding used to go from ascii 32 to 95 but that 32 is deprecated and generally newer releases go from 33-96 (with 96 being used in place of 32).   This replaces the " " in the encoding with "`".  

For example, the newest version of busybox only accepts the new encoding.

The uu package has no way to specify to use this new encoding making it a pain to integrate.   Oddly, the uu.decode function does properly decode files encoded using "`", but encode is unable to create them.
History
Date User Action Args
2017-04-19 18:22:20LawfulEvilsetrecipients: + LawfulEvil
2017-04-19 18:22:20LawfulEvilsetmessageid: <1492626140.89.0.479583121087.issue30103@psf.upfronthosting.co.za>
2017-04-19 18:22:20LawfulEvillinkissue30103 messages
2017-04-19 18:22:20LawfulEvilcreate