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 Red HamsterX
Recipients Red HamsterX, ajaksu2, amaury.forgeotdarc, r.david.murray, sanxiyn
Date 2009-07-29.16:58:03
SpamBayes Score 0.0023219932
Marked as misclassified No
Message-id <1248886685.78.0.179057585697.issue1466065@psf.upfronthosting.co.za>
In-reply-to
Content
According to the documentation cited by Seo Sanghyeon in the first post,
"A TypeError is raised if s were incorrectly padded or if there are
non-alphabet characters present in the string."

The valid range of characters is [A-Za-z0-9], and one or two '='s may
appear at the end of the input to signify dimension-padding. Therefore,
'!' should fail with a TypeError alerting the user to the presence of
unrecognized data, rather than being discarded.

(Additionally, it looks like newline characters in the input aren't
unheard of, and those are probably the reason behind the silent ignores)
History
Date User Action Args
2009-07-29 16:58:05Red HamsterXsetrecipients: + Red HamsterX, amaury.forgeotdarc, sanxiyn, ajaksu2, r.david.murray
2009-07-29 16:58:05Red HamsterXsetmessageid: <1248886685.78.0.179057585697.issue1466065@psf.upfronthosting.co.za>
2009-07-29 16:58:04Red HamsterXlinkissue1466065 messages
2009-07-29 16:58:03Red HamsterXcreate