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
eb88cb8c
Kaydet (Commit)
eb88cb8c
authored
May 31, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
__enter__ and __exit__ must be on the class
üst
382ccdfd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
synchronize.py
Lib/multiprocessing/synchronize.py
+12
-4
No files found.
Lib/multiprocessing/synchronize.py
Dosyayı görüntüle @
eb88cb8c
...
...
@@ -58,8 +58,12 @@ class SemLock(object):
def
_make_methods
(
self
):
self
.
acquire
=
self
.
_semlock
.
acquire
self
.
release
=
self
.
_semlock
.
release
self
.
__enter__
=
self
.
_semlock
.
__enter__
self
.
__exit__
=
self
.
_semlock
.
__exit__
def
__enter__
(
self
):
return
self
.
_semlock
.
__enter__
()
def
__exit__
(
self
,
*
args
):
return
self
.
_semlock
.
__exit__
(
*
args
)
def
__getstate__
(
self
):
assert_spawning
(
self
)
...
...
@@ -181,11 +185,15 @@ class Condition(object):
self
.
_woken_count
,
self
.
_wait_semaphore
)
=
state
self
.
_make_methods
()
def
__enter__
(
self
):
return
self
.
_lock
.
__enter__
()
def
__exit__
(
self
,
*
args
):
return
self
.
_lock
.
__exit__
(
*
args
)
def
_make_methods
(
self
):
self
.
acquire
=
self
.
_lock
.
acquire
self
.
release
=
self
.
_lock
.
release
self
.
__enter__
=
self
.
_lock
.
__enter__
self
.
__exit__
=
self
.
_lock
.
__exit__
def
__repr__
(
self
):
try
:
...
...
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