mercurial/util.py
branchstable
changeset 50753 a2df74853f8d
parent 50689 a45460e235a2
child 50928 d718eddf01d9
--- a/mercurial/util.py	Tue Jun 27 13:51:50 2023 +0200
+++ b/mercurial/util.py	Tue Jun 27 10:09:11 2023 +0200
@@ -1277,14 +1277,14 @@
 
     >>> d1 = sortdict([(b'a', 0), (b'b', 1)])
     >>> d2 = d1.copy()
-    >>> d2
-    sortdict([('a', 0), ('b', 1)])
+    >>> list(d2.items())
+    [('a', 0), ('b', 1)]
     >>> d2.update([(b'a', 2)])
     >>> list(d2.keys()) # should still be in last-set order
     ['b', 'a']
     >>> d1.insert(1, b'a.5', 0.5)
-    >>> d1
-    sortdict([('a', 0), ('a.5', 0.5), ('b', 1)])
+    >>> list(d1.items())
+    [('a', 0), ('a.5', 0.5), ('b', 1)]
     """
 
     def __setitem__(self, key, value):