Its interesting to note that python dictionaries support the == operator
References:
- https://stackoverflow.com/a/5635309
- https://stackoverflow.com/questions/17217225/what-does-the-operator-actually-do-on-a-python-dictionary
- https://www.laurentluce.com/posts/python-dictionary-implementation/
- This is a nice read on Python’s dictionary implementation using hash tables
- https://hg.python.org/cpython/file/6f535c725b27/Objects/dictobject.c#l1839