uplink icon indicating copy to clipboard operation
uplink copied to clipboard

Code suggestion: use abc instead of raising NotImplementedError in interfaces

Open daa opened this issue 8 years ago • 0 comments

abc module provides the infrastructure for defining abstract base classes (ABCs) in Python, as outlined in PEP 3119. The point is that not fully defined successors of abstract base class cannot be instantiated unlike objects with methods raising NotImplementedError.

daa avatar Feb 01 '18 13:02 daa