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 Nick Barnes
Recipients Nick Barnes, vstinner
Date 2008-11-25.13:09:21
SpamBayes Score 0.01891233
Marked as misclassified No
Message-id <1227618563.01.0.835469631963.issue4426@psf.upfronthosting.co.za>
In-reply-to
Content
# Note, this test covers issues 4425 and 4426

# Direct encoded characters:
set_d =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'(),-./:?"

# Optional direct characters:
set_o = '!"#$%&*;<=>@[]^_`{|}'

all((c.encode('utf7') == c) for c in set_d)
all((c.decode('utf7') == c) for c in set_d)
all((c.decode('utf7') == c) for c in set_o)
History
Date User Action Args
2008-11-25 13:09:23Nick Barnessetrecipients: + Nick Barnes, vstinner
2008-11-25 13:09:23Nick Barnessetmessageid: <1227618563.01.0.835469631963.issue4426@psf.upfronthosting.co.za>
2008-11-25 13:09:21Nick Barneslinkissue4426 messages
2008-11-25 13:09:21Nick Barnescreate