defaultdict is written in C and pep8 is not applied, on the other hand OrderDict is written in python,
you can read the C code norm for a Python C implementation here: PEP 7
reference: python2.7 source code
defaultdict : Modules/_collectionsmodule.c
OrderDict : Lib/collections.py
mouad source
share