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 rpetrov
Recipients MrJean1, amaury.forgeotdarc, loewis, mark.dickinson, rpetrov
Date 2008-11-30.21:42:54
SpamBayes Score 0.00033204636
Marked as misclassified No
Message-id <1228081377.61.0.242690846989.issue4388@psf.upfronthosting.co.za>
In-reply-to
Content
"C locale (alias POSIX, ANSI_X3.4-1968) define is 7-bit char-set.
It is expected mbstowcs to return error is a byte sequence contain a
byte > 128. 

After quick check into code
(http://svn.python.org/view/python/branches/py3k/Lib/test/test_cmd_line.py?rev=67193&view=auto)
I guess that failure is from command "assert(ord('\xe9') == 0xe9)" (test
is run only on mac os platforms). For the "C" program run is ascii(C,..)
locale is expected conversion of byte \xe9 to wchar_t to return error.
History
Date User Action Args
2008-11-30 21:43:00rpetrovsetrecipients: + rpetrov, loewis, amaury.forgeotdarc, mark.dickinson, MrJean1
2008-11-30 21:42:57rpetrovsetmessageid: <1228081377.61.0.242690846989.issue4388@psf.upfronthosting.co.za>
2008-11-30 21:42:56rpetrovlinkissue4388 messages
2008-11-30 21:42:55rpetrovcreate