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
c3460604
Kaydet (Commit)
c3460604
authored
Mar 23, 2014
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.3.
üst
80a5be1d
3e952d56
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
popen_fork.py
Lib/multiprocessing/popen_fork.py
+1
-1
popen_forkserver.py
Lib/multiprocessing/popen_forkserver.py
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/multiprocessing/popen_fork.py
Dosyayı görüntüle @
c3460604
...
...
@@ -47,7 +47,7 @@ class Popen(object):
def
wait
(
self
,
timeout
=
None
):
if
self
.
returncode
is
None
:
if
timeout
is
not
None
:
from
.connection
import
wait
from
multiprocessing
.connection
import
wait
if
not
wait
([
self
.
sentinel
],
timeout
):
return
None
# This shouldn't block if wait() returned successfully.
...
...
Lib/multiprocessing/popen_forkserver.py
Dosyayı görüntüle @
c3460604
...
...
@@ -57,7 +57,7 @@ class Popen(popen_fork.Popen):
def
poll
(
self
,
flag
=
os
.
WNOHANG
):
if
self
.
returncode
is
None
:
from
.connection
import
wait
from
multiprocessing
.connection
import
wait
timeout
=
0
if
flag
==
os
.
WNOHANG
else
None
if
not
wait
([
self
.
sentinel
],
timeout
):
return
None
...
...
Misc/NEWS
Dosyayı görüntüle @
c3460604
...
...
@@ -21,6 +21,8 @@ Core and Builtins
Library
-------
- Issue #20633: Replace relative import by absolute import.
- Issue #20980: Stop wrapping exception when using ThreadPool.
- Issue #20990: Fix issues found by pyflakes for multiprocessing.
...
...
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