标准python库中特殊的双下划线属性的完整列表?

时间:2013-05-01 18:33:28

标签: python standard-library double-underscore

有没有人会有一个特殊的python属性列表,以一个双下划线开头和结尾,并简要说明它们的功能?

以下几行:

{
    "__slots__": "an iterable that restricts a set of admissible methods in a class",
    "__imul__": "*=",
    "__doc__": "docstring",
}

2 个答案:

答案 0 :(得分:3)

所有这些信息都在Python文档的Data Model部分

答案 1 :(得分:2)

您可以查看herehere (python docs)以获取列表。但我不知道它们是否真的是完整的清单。