Where is the source code for python dict type?

I want to view source code like python dict , but I cannot find it.

I am looking for python 2.6.

+7
source share
4 answers
+5
source

Here's a newer link with source highlighting: http://hg.python.org/cpython/file/tip/Objects/dictobject.c

+5
source

Now that Python has moved to Github, here is the updated link:

cpython/Objects/dictobject.c .

+4
source

See Objects/dictobject.c in the Python source code.

+3
source

All Articles