Before abc was introduced you would see this frequently.
class Base(object):
def go(self):
raise NotImplementedNotImplementedError("Please Implement this method")
class Specialized(Base):
def go(self):
print "Consider me implemented"