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
cb17094d
Kaydet (Commit)
cb17094d
authored
Eki 17, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
disable the garbage collector while collecting traces, so that __del__s don't get caught
üst
fc49f2a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
test_sys_setprofile.py
Lib/test/test_sys_setprofile.py
+12
-3
No files found.
Lib/test/test_sys_setprofile.py
Dosyayı görüntüle @
cb17094d
import
gc
import
pprint
import
pprint
import
sys
import
sys
import
unittest
import
unittest
...
@@ -354,9 +355,17 @@ protect_ident = ident(protect)
...
@@ -354,9 +355,17 @@ protect_ident = ident(protect)
def
capture_events
(
callable
,
p
=
None
):
def
capture_events
(
callable
,
p
=
None
):
if
p
is
None
:
if
p
is
None
:
p
=
HookWatcher
()
p
=
HookWatcher
()
sys
.
setprofile
(
p
.
callback
)
# Disable the garbage collector. This prevents __del__s from showing up in
protect
(
callable
,
p
)
# traces.
sys
.
setprofile
(
None
)
old_gc
=
gc
.
isenabled
()
gc
.
disable
()
try
:
sys
.
setprofile
(
p
.
callback
)
protect
(
callable
,
p
)
sys
.
setprofile
(
None
)
finally
:
if
old_gc
:
gc
.
enable
()
return
p
.
get_events
()[
1
:
-
1
]
return
p
.
get_events
()[
1
:
-
1
]
...
...
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