абстрактный метод не определен - PullRequest
19 голосов
/ 27 января 2011

Я не могу запустить этот код, потому что я получаю исключение:

NameError: name 'abstractmethod' is not defined
File "C:\Tests\trunk\PythonTests\AbstractClasses.py", line 12, in <module>
  class MyIterable:
File "C:\Tests\trunk\PythonTests\AbstractClasses.py", line 15, in MyIterable
  @abstractmethod

from abc import ABCMeta

class Foo(object):
    def __getitem__(self, index):
        print '__get_item__ Foo'
    def __len__(self):
        print '__len__ Foo'
    def get_iterator(self):
        print 'get_iterator Foo'
        return iter(self)

class MyIterable:
    __metaclass__ = ABCMeta

    @abstractmethod
    def __iter__(self):
        while False:
            yield None

    def get_iterator(self):
        return self.__iter__()

    @classmethod
    def __subclasshook__(cls, C):
        if cls is MyIterable:
            if any("__iter__" in B.__dict__ for B in C.__mro__):
                print "I'm in __subclasshook__"
                return True
        return NotImplemented

MyIterable.register(Foo)

x=Foo()
x.__subclasshook__()

Я уверен, что код в порядке, потому что я получил его от http://docs.python.org/library/abc.html

EDIT

Спасибо за ответ, сейчас работает, но почему

print '__subclasshook__'

это не работает? Я не попадаю в Debug I / 0

Ответы [ 3 ]

34 голосов
/ 27 января 2011

Вы только импортировали ABCMeta

from abc import ABCMeta

Также импортируйте abstractmethod

from abc import ABCMeta, abstractmethod

и все должно быть в порядке.

3 голосов
/ 27 января 2011

Вам необходимо импортировать abstractmethod из abc.

0 голосов
/ 16 июня 2018

Вам нужно изменить импорт ABC на ABCMeta

from abc import ABCMeta, abstractmethod

class AbstractClassExample(ABCMeta):

    def __init__(self, value):
        self.value = value
        super().__init__()

    @abstractmethod
    def do_something(self):
        print("do_something")


class DoAdd42(AbstractClassExample):
    print("DoAdd42")

x = DoAdd42(4)
...