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 b1a9588 commit ee178e6Copy full SHA for ee178e6
1 file changed
Objects/odictobject.c
@@ -39,7 +39,7 @@ we've considered:
39
__getitem__(), get(), etc. accordingly.
40
41
The approach with the least performance impact (time and space) is #2,
42
-mirroring the key order of dict's dk_enties with an array of node pointers.
+mirroring the key order of dict's dk_entries with an array of node pointers.
43
While lookdict() and friends (dk_lookup) don't give us the index into the
44
array, we make use of pointer arithmetic to get that index. An alternative
45
would be to refactor lookdict() to provide the index, explicitly exposing
0 commit comments