[issue4425] UTF7 encoding of slash (character 47) is incorrect

2009-05-04 Thread STINNER Victor
Changes by STINNER Victor : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue4425] UTF7 encoding of slash (character 47) is incorrect

2009-05-04 Thread STINNER Victor
STINNER Victor added the comment: I think that we can merge this issue with #4426. -- resolution: -> duplicate ___ Python tracker ___ ___

[issue4425] UTF7 encoding of slash (character 47) is incorrect

2008-11-29 Thread Antoine Pitrou
Changes by Antoine Pitrou <[EMAIL PROTECTED]>: -- nosy: +pitrou ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing

[issue4425] UTF7 encoding of slash (character 47) is incorrect

2008-11-25 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: Related issue: #4426 -- nosy: +haypo ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue4425] UTF7 encoding of slash (character 47) is incorrect

2008-11-25 Thread Nick Barnes
New submission from Nick Barnes <[EMAIL PROTECTED]>: '/'.encode('utf7') returns '+AC8-'. It should return '/'. See RFC 2152. '/'.decode('utf7') raises an exception (this is a special case of a general problem with UTF-7 decoding, which I will report as a separate bug). -- components: