Commit 0161c34e authored by Guido van Rossum's avatar Guido van Rossum

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

parent 928d76fd
......@@ -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__'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment