Thanks to visit codestin.com Credit goes to github.com
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 822eb84 commit e909150Copy full SHA for e909150
1 file changed
Doc/library/collections.rst
@@ -844,6 +844,9 @@ the items are returned in the order their keys were first added.
844
a (key, value) pair. The pairs are returned in LIFO order if *last* is
845
true or FIFO order if false.
846
847
+In addition to the usual mapping methods, ordered dictionaries also support
848
+reverse iteration using :func:`reversed`.
849
+
850
Equality tests between :class:`OrderedDict` objects are order-sensitive
851
and are implemented as ``list(od1.items())==list(od2.items())``.
852
Equality tests between :class:`OrderedDict` objects and other
0 commit comments