在 Python 3.1 中,模块中有一个我不知道的新内置函数builtins
:
__build_class__(...)
__build_class__(func, name, *bases, metaclass=None, **kwds) -> class
Internal helper function used by the class statement.
这个函数有什么作用?如果它是内部的,为什么它必须是内置的?功能有什么区别type(name, bases, dict)
?