We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a7b5a commit bcb75cfCopy full SHA for bcb75cf
doc/examples/aggregation.rst
@@ -45,8 +45,8 @@ To achieve this we need to pass in three operations to the pipeline.
45
First, we need to unwind the ``tags`` array, then group by the tags and
46
sum them up, finally we sort by count.
47
48
-As python dictionaries don't maintain order you should use :class:`~bson.son.SON`
49
-or :class:`collections.OrderedDict` where explicit ordering is required
+Python dictionaries prior to 3.7 don't maintain order. You should use :class:`~bson.son.SON`
+or :class:`collections.OrderedDict` where explicit ordering is required for an older Python version
50
eg "$sort":
51
52
.. note::
0 commit comments