From 5f26d0c4421e07eded7f959e6c56619963f77d98 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 7 Aug 2012 00:11:08 +0200 Subject: [PATCH] mixins are now possible even if some things are in the base class --- builtin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin.py b/builtin.py index 327218c8..b8127a42 100644 --- a/builtin.py +++ b/builtin.py @@ -189,6 +189,8 @@ class Parser(CachedModule): def is_in_base_classes(cls, name, comparison): """ Base classes may contain the exact same object """ + if name in mixin_funcs: + return False try: mro = cls.mro() except TypeError: