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
5f32b236
Kaydet (Commit)
5f32b236
authored
Eki 11, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use the with statement for locking the internal condition (closes #25362)
Patch by Nir Soffer.
üst
4ed35fc4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
12 deletions
+3
-12
threading.py
Lib/threading.py
+3
-12
No files found.
Lib/threading.py
Dosyayı görüntüle @
5f32b236
...
...
@@ -580,12 +580,9 @@ class _Event(_Verbose):
that call wait() once the flag is true will not block at all.
"""
self
.
__cond
.
acquire
()
try
:
with
self
.
__cond
:
self
.
__flag
=
True
self
.
__cond
.
notify_all
()
finally
:
self
.
__cond
.
release
()
def
clear
(
self
):
"""Reset the internal flag to false.
...
...
@@ -594,11 +591,8 @@ class _Event(_Verbose):
set the internal flag to true again.
"""
self
.
__cond
.
acquire
()
try
:
with
self
.
__cond
:
self
.
__flag
=
False
finally
:
self
.
__cond
.
release
()
def
wait
(
self
,
timeout
=
None
):
"""Block until the internal flag is true.
...
...
@@ -615,13 +609,10 @@ class _Event(_Verbose):
True except if a timeout is given and the operation times out.
"""
self
.
__cond
.
acquire
()
try
:
with
self
.
__cond
:
if
not
self
.
__flag
:
self
.
__cond
.
wait
(
timeout
)
return
self
.
__flag
finally
:
self
.
__cond
.
release
()
# Helper to generate new thread names
_counter
=
_count
()
.
next
...
...
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