标签: python python-3.x
有人可以帮忙说一下如何查看dict.__getitem__()方法的定义吗?
dict.__getitem__()
答案 0 :(得分:1)
dict.__getitem__()是用C实现的内置方法,其源代码可以在CPython的PyDict_GetItem函数中找到: https://github.com/python/cpython/blob/796cc6e3ad3617c1ea9e528663aac1a206230a28/Objects/dictobject.c#L1349
PyDict_GetItem