Closed
Description
Related to #18, sometimes users might want their results to be in the same order as they are in the fields. In this case, I am thinking that it should be an optional argument (default False) to the Executor
.
In the default, it will use regular dict
objects to store results. But if say enforce_strict_ordering=True
is passed to the Executor, then we will use OrderedDict
instead.