From a88528bc843d9293636b30165be07cd4f241c500 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 1 Nov 2014 19:05:04 -0400 Subject: stop using slots directly here --- t/overrides_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/overrides_test.py b/t/overrides_test.py index 3993af7..eec0247 100644 --- a/t/overrides_test.py +++ b/t/overrides_test.py @@ -9,9 +9,9 @@ from . import InMemoryDatabase # obscure the implementation and make it not as easy to follow (we would have # to manage call stacks ourselves), and so we just do this instead for now def call_method_at_class(c, method_name, invocant, *args, **kwargs): - return c.all_methods()[method_name].slots["body"]( - invocant, *args, **kwargs - ) + method = c.all_methods()[method_name] + attr = method.metaclass.all_attributes()["body"] + return attr.value(method)(invocant, *args, **kwargs) class OverridesTest(unittest.TestCase): def test_accessor_generation(self): -- cgit v1.2.3