Fix one test to reflect the change in method lookup policy.

This commit is contained in:
Guido van Rossum 2001-08-28 17:58:55 +00:00
parent 607187325f
commit a5be8eda37
1 changed files with 1 additions and 2 deletions

View File

@ -441,8 +441,7 @@ def pymods():
a.foo = 12
x = a.foo
del a.foo
verify(log == [('getattr', '__init__'),
('getattr', '__setattr__'),
verify(log == [('getattr', '__setattr__'),
("setattr", "foo", 12),
("getattr", "foo"),
('getattr', '__delattr__'),