[Python-checkins] CVS: python/dist/src/Lib/test test_format.py,1.4,1.5

A.M. Kuchling python-dev@python.org
Tue, 19 Dec 2000 16:55:48 -0800


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

Modified Files:
	test_format.py 
Log Message:
Change expected message for ValueError, fixing bug #126400


Index: test_format.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_format.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** test_format.py	2000/12/15 13:09:06	1.4
--- test_format.py	2000/12/20 00:55:46	1.5
***************
*** 198,201 ****
           "unsupported format character 'a' (0x61) at index 5")
  test_exc(u'abc %\u3000', 1, ValueError,
!          "unsupported format character '\000' (0x3000) at index 5")
  
--- 198,201 ----
           "unsupported format character 'a' (0x61) at index 5")
  test_exc(u'abc %\u3000', 1, ValueError,
!          "unsupported format character '?' (0x3000) at index 5")