标签: python performance slots
如果我们创建从dict继承为的类
class my_dict(dict): ...
并且将实例化此类的许多对象,我们是否需要设置__slots__ = ()来优化python解释器使用的内存?
__slots__ = ()