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