[Python-checkins] CVS: python/dist/src/Lib/test test_locale.py,1.2,1.3

Tim Peters tim_one@users.sourceforge.net
Tue, 01 May 2001 22:54:46 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv29889/python/dist/src/Lib/test

Modified Files:
	test_locale.py 
Log Message:
Whitespace normalization.


Index: test_locale.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_locale.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** test_locale.py	2001/04/15 13:15:56	1.2
--- test_locale.py	2001/05/02 05:54:44	1.3
***************
*** 37,42 ****
      testformat("%+f", -42, grouping=1, output='-42.000000')
      testformat("%20.f", -42, grouping=1, output='                 -42')
!     testformat("%+10.f", -4200, grouping=1, output='    -4,200')    
!     testformat("%-10.f", 4200, grouping=1, output='4,200     ')    
  finally:
      locale.setlocale(locale.LC_NUMERIC, oldlocale)
--- 37,42 ----
      testformat("%+f", -42, grouping=1, output='-42.000000')
      testformat("%20.f", -42, grouping=1, output='                 -42')
!     testformat("%+10.f", -4200, grouping=1, output='    -4,200')
!     testformat("%-10.f", 4200, grouping=1, output='4,200     ')
  finally:
      locale.setlocale(locale.LC_NUMERIC, oldlocale)