Change by vassilis Lemonidis :
--
title: list inheritor with abc method does not raise -> list inheritor with
abstract content does not raise
___
Python tracker
<https://bugs.python.org/issu
Change by vassilis Lemonidis :
--
type: -> behavior
___
Python tracker
<https://bugs.python.org/issue35362>
___
___
Python-bugs-list mailing list
Unsubscrib
New submission from vassilis Lemonidis :
The following does not raise:
class Test(list, metaclass=ABCMeta):
@abstractmethod
def test(self):
pass
test = Test()
There is not enough documentation to support this problem, so I believe this
can be classified as a bug. Anyone