Skip to content
  • Médéric Boquien's avatar
    We rely on OrderedDict to keep the order of the parameters. However given the... · 14b34462
    Médéric Boquien authored
    We rely on OrderedDict to keep the order of the parameters. However given the way the code is structured currently, there is really no reason for this. So let's just switch to the standard dictionary. This has two advantages. First the standard dictionary is much faster than OrderedDict (implemented in C rather than in pure python). Then, standard dictionaries are marshalable, which makes them usable as keys for other dictionaries.
    14b34462