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

Guido van Rossum gvanrossum@users.sourceforge.net
Tue, 28 Aug 2001 10:58:58 -0700


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

Modified Files:
	test_descr.py 
Log Message:
Fix one test to reflect the change in method lookup policy.


Index: test_descr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_descr.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** test_descr.py	2001/08/24 17:07:20	1.22
--- test_descr.py	2001/08/28 17:58:55	1.23
***************
*** 442,447 ****
      x = a.foo
      del a.foo
!     verify(log == [('getattr', '__init__'),
!                    ('getattr', '__setattr__'),
                     ("setattr", "foo", 12),
                     ("getattr", "foo"),
--- 442,446 ----
      x = a.foo
      del a.foo
!     verify(log == [('getattr', '__setattr__'),
                     ("setattr", "foo", 12),
                     ("getattr", "foo"),