diff options
author | Guido van Rossum <guido@python.org> | 2001-08-28 18:23:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-08-28 18:23:24 (GMT) |
commit | ce129a5e791548dab11c49bb1fe6ec0a1d6bd8b0 (patch) | |
tree | 07d05ca9d6331f4eb7f619826ea541da844952c3 /Lib | |
parent | 2730b132024acd7fbb18110a49b1ea1dbe9e2261 (diff) | |
download | cpython-ce129a5e791548dab11c49bb1fe6ec0a1d6bd8b0.zip cpython-ce129a5e791548dab11c49bb1fe6ec0a1d6bd8b0.tar.gz cpython-ce129a5e791548dab11c49bb1fe6ec0a1d6bd8b0.tar.bz2 |
Fix the test again due to fewer calls to __getattr__.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_descr.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index d581cff..1b53bb6 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -441,10 +441,8 @@ def pymods(): a.foo = 12 x = a.foo del a.foo - verify(log == [('getattr', '__setattr__'), - ("setattr", "foo", 12), + verify(log == [("setattr", "foo", 12), ("getattr", "foo"), - ('getattr', '__delattr__'), ("delattr", "foo")], log) def multi(): |