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
312a5dc5
Kaydet (Commit)
312a5dc5
authored
Şub 02, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WeakDictionary.items(): Do not allow (key,ref) pairs to leak out for
dead references.
üst
261b8e26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
weakref.py
Lib/weakref.py
+3
-3
No files found.
Lib/weakref.py
Dosyayı görüntüle @
312a5dc5
...
@@ -67,12 +67,12 @@ class WeakDictionary(UserDict.UserDict):
...
@@ -67,12 +67,12 @@ class WeakDictionary(UserDict.UserDict):
return
o
return
o
def
items
(
self
):
def
items
(
self
):
L
=
self
.
data
.
items
()
L
=
[]
for
i
in
range
(
len
(
L
)
):
for
key
,
ref
in
self
.
data
.
items
(
):
key
,
ref
=
L
[
i
]
key
,
ref
=
L
[
i
]
o
=
ref
()
o
=
ref
()
if
o
is
not
None
:
if
o
is
not
None
:
L
[
i
]
=
key
,
o
L
.
append
((
key
,
o
))
return
L
return
L
def
popitem
(
self
):
def
popitem
(
self
):
...
...
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