00001 """ Module with Python 2/3 compatibility functions. """ 00002 00003 def with_metaclass(Meta, *bases): 00004 """ Allows to specify metaclasses in Python 2 and 3 compatible ways. 00005 Might not allow 00006 """ 00007 return Meta("Meta", bases, {})