blob: ddce4a86100f61f4eb16dfe5d4dacd9306487c60 [file] [log] [blame]
from abc import ABCMeta
from abc import abstractmethod
ABCMeta()
abstractmethod()
class NewParent(metaclass=ABCMeta):
@classmethod
@abstractmethod
def foo_method(cls):
pass