diff options
| author | Guido van Rossum <guido@python.org> | 2001-08-28 17:58:55 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2001-08-28 17:58:55 +0000 |
| commit | a5be8eda37e864ed3c169b8e2c660d3c65eaec38 (patch) | |
| tree | 1e85bf3fbcc17ce60e1e5b885b3f957bfc46b8c3 | |
| parent | 607187325fa364bb170de354f7a12ec60a973ff7 (diff) | |
| download | cpython-git-a5be8eda37e864ed3c169b8e2c660d3c65eaec38.tar.gz | |
Fix one test to reflect the change in method lookup policy.
| -rw-r--r-- | Lib/test/test_descr.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 054dd8710f..d581cff271 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__'), |
