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
a81dd659
Kaydet (Commit)
a81dd659
authored
Haz 08, 2013
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #15528: Delay importing atexit until weakref.finalize() used.
üst
99c5afcb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
weakref.py
Lib/weakref.py
+7
-3
No files found.
Lib/weakref.py
Dosyayı görüntüle @
a81dd659
...
...
@@ -23,7 +23,6 @@ from _weakrefset import WeakSet, _IterationGuard
import
collections
# Import after _weakref to avoid circular import.
import
sys
import
itertools
import
atexit
ProxyTypes
=
(
ProxyType
,
CallableProxyType
)
...
...
@@ -464,11 +463,18 @@ class finalize:
_shutdown
=
False
_index_iter
=
itertools
.
count
()
_dirty
=
False
_registered_with_atexit
=
False
class
_Info
:
__slots__
=
(
"weakref"
,
"func"
,
"args"
,
"kwargs"
,
"atexit"
,
"index"
)
def
__init__
(
self
,
obj
,
func
,
*
args
,
**
kwargs
):
if
not
self
.
_registered_with_atexit
:
# We may register the exit function more than once because
# of a thread race, but that is harmless
import
atexit
atexit
.
register
(
self
.
_exitfunc
)
finalize
.
_registered_with_atexit
=
True
info
=
self
.
_Info
()
info
.
weakref
=
ref
(
obj
,
self
)
info
.
func
=
func
...
...
@@ -569,5 +575,3 @@ class finalize:
finalize
.
_shutdown
=
True
if
reenable_gc
:
gc
.
enable
()
atexit
.
register
(
finalize
.
_exitfunc
)
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