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
abe9dc3f
Kaydet (Commit)
abe9dc3f
authored
Tem 29, 2011
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue 12514: Use try/finally to assure that timeit restores GC when done.
üst
1d8b968c
3a081f52
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
timeit.py
Lib/timeit.py
+5
-3
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/timeit.py
Dosyayı görüntüle @
abe9dc3f
...
...
@@ -191,9 +191,11 @@ class Timer:
it
=
[
None
]
*
number
gcold
=
gc
.
isenabled
()
gc
.
disable
()
timing
=
self
.
inner
(
it
,
self
.
timer
)
if
gcold
:
gc
.
enable
()
try
:
timing
=
self
.
inner
(
it
,
self
.
timer
)
finally
:
if
gcold
:
gc
.
enable
()
return
timing
def
repeat
(
self
,
repeat
=
default_repeat
,
number
=
default_number
):
...
...
Misc/ACKS
Dosyayı görüntüle @
abe9dc3f
...
...
@@ -771,6 +771,7 @@ Chris Rebert
Marc Recht
John Redford
Terry Reedy
Gareth Rees
Steve Reeves
Lennart Regebro
Ofir Reichenberg
...
...
Misc/NEWS
Dosyayı görüntüle @
abe9dc3f
...
...
@@ -246,6 +246,9 @@ Library
- Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.
- Issue #12514: Use try/finally to assure the timeit module restores garbage
collections when it is done.
- Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is
given as a low fd, it gets overwritten.
...
...
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