From: Guido van Rossum Date: Tue, 28 Aug 2001 18:23:24 +0000 (+0000) Subject: Fix the test again due to fewer calls to __getattr__. X-Git-Tag: v2.2a3~273 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce129a5e791548dab11c49bb1fe6ec0a1d6bd8b0;p=python Fix the test again due to fewer calls to __getattr__. --- diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index d581cff271..1b53bb64c6 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():