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 6c89a79 commit eaac4f0Copy full SHA for eaac4f0
1 file changed
Lib/collections.py
@@ -33,7 +33,7 @@ class OrderedDict(dict):
33
# The circular doubly linked list starts and ends with a sentinel element.
34
# The sentinel element never gets deleted (this simplifies the algorithm).
35
# The sentinel is in self.__hardroot with a weakref proxy in self.__root.
36
- # The prev/next links are weakref proxies (to prevent circular references).
+ # The prev links are weakref proxies (to prevent circular references).
37
# Individual links are kept alive by the hard reference in self.__map.
38
# Those hard references disappear when a key is deleted from an OrderedDict.
39
0 commit comments