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 jwilk
Recipients jwilk
Date 2014-10-10.12:44:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412945083.94.0.341902119278.issue22602@psf.upfronthosting.co.za>
In-reply-to
Content
RFC 2152 reads:

  A "+" character followed immediately by any character other than
  members of set B or "-" is an ill-formed sequence.

"@" is not a member of B, so I would expect this to raise UnicodeDecodeError:

>>> b'+@'.decode('UTF-7')
'@'
History
Date User Action Args
2014-10-10 12:44:43jwilksetrecipients: + jwilk
2014-10-10 12:44:43jwilksetmessageid: <1412945083.94.0.341902119278.issue22602@psf.upfronthosting.co.za>
2014-10-10 12:44:43jwilklinkissue22602 messages
2014-10-10 12:44:43jwilkcreate