如何查看dict .__ getitem __()方法的源代码

时间:2019-04-01 15:40:02

标签: python python-3.x

有人可以帮忙说一下如何查看dict.__getitem__()方法的定义吗?

1 个答案:

答案 0 :(得分:1)

dict.__getitem__()是用C实现的内置方法,其源代码可以在CPython的PyDict_GetItem函数中找到: https://github.com/python/cpython/blob/796cc6e3ad3617c1ea9e528663aac1a206230a28/Objects/dictobject.c#L1349