[Python-Dev] test_locale failing on MacOSX w/ 2.2.2 (original) (raw)

Skip Montanaro skip@pobox.com
Wed, 9 Oct 2002 08:54:49 -0500


Just got this test failure this morning on MacOS 10.2 running w/ 2.2.2 from CVS (or very nearly so):

% ./python.exe ../Lib/test/regrtest.py test_locale
test_locale
test test_locale produced unexpected output:
**********************************************************************
*** lines 2-4 of actual output doesn't appear in expected output after line 1:
+ '%f' % 1024 == '1024.000000' != '1,024.000000'
+ '%+10.f' % -4200 == '     -4200' != '    -4,200'
+ '%-10.f' % 4200 == '4200      ' != '4,200     '
**********************************************************************

Skip