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 pitrou
Recipients ocean-city, pitrou, vstinner
Date 2009-04-04.16:56:45
SpamBayes Score 0.0084731635
Marked as misclassified No
Message-id <1238864208.0.0.317909565476.issue5410@psf.upfronthosting.co.za>
In-reply-to
Content
There seems to be a problem with ungetwch():

>>> s = msvcrt.getwch()
# Here I type the Euro sign (€)
>>> ascii(s)
"'\\u20ac'"
>>> msvcrt.ungetwch(s)
>>> u = msvcrt.getwch()
>>> ascii(u)
"'\\xac'"
History
Date User Action Args
2009-04-04 16:56:48pitrousetrecipients: + pitrou, vstinner, ocean-city
2009-04-04 16:56:48pitrousetmessageid: <1238864208.0.0.317909565476.issue5410@psf.upfronthosting.co.za>
2009-04-04 16:56:46pitroulinkissue5410 messages
2009-04-04 16:56:45pitroucreate