summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-28 17:58:55 (GMT)
committerGuido van Rossum <guido@python.org>2001-08-28 17:58:55 (GMT)
commita5be8eda37e864ed3c169b8e2c660d3c65eaec38 (patch)
tree1e85bf3fbcc17ce60e1e5b885b3f957bfc46b8c3
parent607187325fa364bb170de354f7a12ec60a973ff7 (diff)
downloadcpython-a5be8eda37e864ed3c169b8e2c660d3c65eaec38.zip
cpython-a5be8eda37e864ed3c169b8e2c660d3c65eaec38.tar.gz
cpython-a5be8eda37e864ed3c169b8e2c660d3c65eaec38.tar.bz2
Fix one test to reflect the change in method lookup policy.
-rw-r--r--Lib/test/test_descr.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 054dd87..d581cff 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -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__'),