No Error While Instantiating Abstract Class, Even Though Abstract Method Is Not Implemented
I was trying out the below python code: from abc import ABCMeta, abstractmethod class Bar: __metaclass__ = ABCMeta @abstractmethod def foo(self): pass clas
Post a Comment for "No Error While Instantiating Abstract Class, Even Though Abstract Method Is Not Implemented"