[Python-bugs-list] [ python-Bugs-445986 ] test_locale fails on IRIX 6.5

noreply@sourceforge.net noreply@sourceforge.net
Mon, 30 Jul 2001 08:29:48 -0700


Bugs item #445986, was opened at 2001-07-30 08:29
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=445986&group_id=5470

Category: Python Library
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Greg Ward (gward)
Assigned to: Nobody/Anonymous (nobody)
Summary: test_locale fails on IRIX 6.5

Initial Comment:
Built Python 2.2a1 on a 64-bit SGI box running IRIX
6.5.  test_locale fails as follows:

$ ./python Lib/test/test_locale.py
'%f' % 1024 =? '1,024.000000' ... no
'%f' % 1024 == '1024.000000' != '1,024.000000'
'%f' % 102 =? '102.000000' ... yes
'%f' % -42 =? '-42.000000' ... yes
'%+f' % -42 =? '-42.000000' ... yes
'%20.f' % -42 =? '                 -42' ... yes
'%+10.f' % -4200 =? '    -4,200' ... no
'%+10.f' % -4200 == '     -4200' != '    -4,200'
'%-10.f' % 4200 =? '4,200     ' ... no
'%-10.f' % 4200 == '4200      ' != '4,200     '


----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=445986&group_id=5470