[Python-checkins] CVS: python/dist/src/Lib/test test_descr.py,1.99,1.100

Tim Peters tim_one@users.sourceforge.net
Mon, 29 Oct 2001 21:41:09 -0800


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

Modified Files:
	test_descr.py 
Log Message:
Just changed some continued-line indentation to read better, due to
the earlier s/dictionary/dict/ change.


Index: test_descr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_descr.py,v
retrieving revision 1.99
retrieving revision 1.100
diff -C2 -d -r1.99 -r1.100
*** test_descr.py	2001/10/30 02:33:02	1.99
--- test_descr.py	2001/10/30 05:41:07	1.100
***************
*** 239,245 ****
  
      d = dict([AddressBookEntry('Tim', 'Warsaw'),
!                     AddressBookEntry('Barry', 'Peters'),
!                     AddressBookEntry('Tim', 'Peters'),
!                     AddressBookEntry('Barry', 'Warsaw')])
      vereq(d, {'Barry': 'Warsaw', 'Tim': 'Peters'})
  
--- 239,245 ----
  
      d = dict([AddressBookEntry('Tim', 'Warsaw'),
!               AddressBookEntry('Barry', 'Peters'),
!               AddressBookEntry('Tim', 'Peters'),
!               AddressBookEntry('Barry', 'Warsaw')])
      vereq(d, {'Barry': 'Warsaw', 'Tim': 'Peters'})