标签: python python-3.x python-2.7 interpreter cpython
我搜索了CPython源代码,但是没有找到所有可用标识符的列表。我说的是解释器知道的标识符,而不是内建的标识符,可以这样列出:
import builtins dir(builtins)
请注意,没有列出__new__,__init__和cls之类的标识符,但是解释器知道它们。
__new__
__init__
cls