How are Python's Built In Dictionaries Implemented?

Viewed 126132

Does anyone know how the built in dictionary type for python is implemented? My understanding is that it is some sort of hash table, but I haven't been able to find any sort of definitive answer.

3 Answers
Related