Switch from using SortedDict to OrderedDict everywhere.
Review Request #10211 — Created Oct. 9, 2018 and submitted — Latest diff uploaded
Python 2.7 introduced
OrderedDict
, which newer code has been making
use of, but older code written for earlier versions of Python were
instead using Django'sSortedDict
. Newer versions of Django don't ship
with this class anymore, and there's no point in using it anyway. This
change moves the few remaining uses over toOrderedDict
.
Unit tests pass.