Skip to content Skip to sidebar Skip to footer
Showing posts with the label Abstract Class

Strange Behaviour When Mixing Abstractmethod, Classmethod And Property Decorators

I've been trying to see whether one can create an abstract class property by mixing the three d… Read more Strange Behaviour When Mixing Abstractmethod, Classmethod And Property Decorators

Python's Super(), Abstract Base Classes, And Notimplementederror

Abstract base classes can still be handy in Python. In writing an abstract base class where I want … Read more Python's Super(), Abstract Base Classes, And Notimplementederror

Python: Hierarchy Of Abstract Classes Without Abstract Methods

So, here is a problem: I want to define an abstract class, let's say AbstractA, which does not… Read more Python: Hierarchy Of Abstract Classes Without Abstract Methods