Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道max()内置函数是如何工作的。所以我试图阅读源代码svn.python.org,但我找不到__builtin__模块。它应该在__builtin__.py,对吗?
max()
svn.python.org
__builtin__
__builtin__.py
有人能告诉我在哪里可以找到这个模块的源代码吗?这在ubuntu linux(有 2.6 版本)中可用吗?
ubuntu linux
__builtin__顾名思义,是指包含语言本身内置的函数和类的特殊模块。这些函数的实现是用 C 语言而不是 Python 语言实现的。(具体来说,在bltinmodule.c源文件中。)
bltinmodule.c