from abc import ABCMeta from collections import Sized class derived(type, Sized): def __len__(self): return 0 class instance(object): __metaclass__ = derived