尝试从具有元类的类继承时,我在 Python 中遇到了一些非常奇怪的问题。我有这个:
class NotifierMetaclass(type):
def __new__(cls, name, bases, dct):
attrs = ((name, value) for name, value in dct.items()
if not name.startswith('__'))
def wrap_method(meth):
return instance_wrapper()(meth) # instance_wrapper is a decorator of my own
def is_callable(value):
return hasattr(value, '__call__')
decorated_meth = dict(
(name, value) if not is_callable(value)
else (name, wrap_method(value))
for name, value in attrs
)
return super(NotifierMetaclass, cls).__new__(
cls, name, bases, decorated_meth
)
class Notifier(object):
def __init__(self, instance):
self._i = instance
__metaclass__ = NotifierMetaclass
然后,在notifiers.py 中:
from helpers import Notifier
class CommentNotifier(Notifier):
def __notification__(self, notification):
return '%s has commented on your board' % self.sender
def __notify__(self):
receivers = self.retrieve_users()
notif_type = self.__notificationtype__()
for user in receivers:
Notification.objects.create(
object_id=self.id,
receiver=user,
sender_id=self.sender_id,
type=notif_type
)
但是,当我尝试导入 CommentNotifier 时,它会返回 Notifier。在外壳中:
$ python
Python 2.7.3 (default, Apr 20 2012, 22:44:07)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from logic.notifiers import CommentNotifier
>>> CommentNotifier
<class 'helpers.CommentNotifier'>
事实上,这(至少我是这么认为的)实际上是我一周前遇到的一些Django 模型的同样问题。起初我认为它与 Django 的工作方式有关,但现在我怀疑它更像是一个 Python 的“问题”,涉及元类和继承。
这是一个已知问题还是我只是做错了什么?希望您能够帮助我。
编辑:我忘了提到我将此“错误”归因于元类,因为如果我不给通知程序一个元类,它会按预期工作。