Simple question.
What hashing algorithm is used in python's default dict?
>>> g = { 'a' : 1, 'b' : 2, 'c' : 3 }
>>> g
{'a': 1, 'c': 3, 'b': 2}
>>> g.keys()
['a', 'c', 'b']
>>>
I expected ['a','b','c']
on g.keys()
Linear probe (guess not)? double hash?