Newer posts are loading.
You are at the newest post.
Click here to check if anything new just came in.

July 05 2009

Doug Hellmann: PyMOTW: abc - Abstract Base Classes

Abstract base classes are a form of interface checking more strict than individual hasattr() checks for particular methods. By defining an abstract base class, you can define a common API for a set of subclasses.
Tags: python oop howto