Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
e30bc38c
Kaydet (Commit)
e30bc38c
authored
Mar 09, 2010
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improve code clarity a bit.
üst
aba22938
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
collections.py
Lib/collections.py
+10
-5
No files found.
Lib/collections.py
Dosyayı görüntüle @
e30bc38c
...
...
@@ -41,7 +41,8 @@ class OrderedDict(dict, MutableMapping):
self
.
__root
except
AttributeError
:
self
.
__root
=
root
=
[
None
,
None
,
None
]
# sentinel node
PREV
,
NEXT
=
0
,
1
PREV
=
0
NEXT
=
1
root
[
PREV
]
=
root
[
NEXT
]
=
root
self
.
__map
=
{}
self
.
update
(
*
args
,
**
kwds
)
...
...
@@ -51,7 +52,8 @@ class OrderedDict(dict, MutableMapping):
# Setting a new item creates a new link which goes at the end of the linked
# list, and the inherited dictionary is updated with the new key/value pair.
if
key
not
in
self
:
PREV
,
NEXT
=
0
,
1
PREV
=
0
NEXT
=
1
root
=
self
.
__root
last
=
root
[
PREV
]
last
[
NEXT
]
=
root
[
PREV
]
=
self
.
__map
[
key
]
=
[
last
,
root
,
key
]
...
...
@@ -62,7 +64,8 @@ class OrderedDict(dict, MutableMapping):
# Deleting an existing item uses self.__map to find the link which is
# then removed by updating the links in the predecessor and successor nodes.
dict
.
__delitem__
(
self
,
key
)
PREV
,
NEXT
=
0
,
1
PREV
=
0
NEXT
=
1
link
=
self
.
__map
.
pop
(
key
)
link
[
PREV
][
NEXT
]
=
link
[
NEXT
]
link
[
NEXT
][
PREV
]
=
link
[
PREV
]
...
...
@@ -70,7 +73,8 @@ class OrderedDict(dict, MutableMapping):
def
__iter__
(
self
):
'od.__iter__() <==> iter(od)'
# Traverse the linked list in order.
NEXT
,
KEY
=
1
,
2
NEXT
=
1
KEY
=
2
root
=
self
.
__root
curr
=
root
[
NEXT
]
while
curr
is
not
root
:
...
...
@@ -80,7 +84,8 @@ class OrderedDict(dict, MutableMapping):
def
__reversed__
(
self
):
'od.__reversed__() <==> reversed(od)'
# Traverse the linked list in reverse order.
PREV
,
KEY
=
0
,
2
PREV
=
0
KEY
=
2
root
=
self
.
__root
curr
=
root
[
PREV
]
while
curr
is
not
root
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment