Python 的内置 __build_class__ 是做什么的?
在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)
函数有什么区别?
In Python 3.1, there is a new builtin function I don't know in the builtins
module:
__build_class__(...)
__build_class__(func, name, *bases, metaclass=None, **kwds) -> class
Internal helper function used by the class statement.
What does this function do? Why must it be in builtins if it's internal? What is the difference to the type(name, bases, dict)
function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编译PEP 3115元类
Guido van Rossum 说:
Compiling the PEP 3115 metaclass
Guido van Rossum said: