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
04f7d539
Kaydet (Commit)
04f7d539
authored
Haz 12, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
attempt to fix multiprocessing
üst
e0d9bb83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
managers.py
Lib/multiprocessing/managers.py
+2
-4
No files found.
Lib/multiprocessing/managers.py
Dosyayı görüntüle @
04f7d539
...
...
@@ -968,7 +968,6 @@ class AcquirerProxy(BaseProxy):
class
ConditionProxy
(
AcquirerProxy
):
# XXX will Condition.notfyAll() name be available in Py3.0?
_exposed_
=
(
'acquire'
,
'release'
,
'wait'
,
'notify'
,
'notify_all'
)
def
wait
(
self
,
timeout
=
None
):
return
self
.
_callmethod
(
'wait'
,
(
timeout
,))
...
...
@@ -978,10 +977,9 @@ class ConditionProxy(AcquirerProxy):
return
self
.
_callmethod
(
'notify_all'
)
class
EventProxy
(
BaseProxy
):
# XXX will Event.isSet name be available in Py3.0?
_exposed_
=
(
'isSet'
,
'set'
,
'clear'
,
'wait'
)
_exposed_
=
(
'is_set'
,
'set'
,
'clear'
,
'wait'
)
def
is_set
(
self
):
return
self
.
_callmethod
(
'is
S
et'
)
return
self
.
_callmethod
(
'is
_s
et'
)
def
set
(
self
):
return
self
.
_callmethod
(
'set'
)
def
clear
(
self
):
...
...
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