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
0d097b62
Kaydet (Commit)
0d097b62
authored
Agu 28, 2013
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18865: PEP 446 makes multiprocessing.util.pipe() unnecessary.
üst
1fa174a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
21 deletions
+1
-21
forkserver.py
Lib/multiprocessing/forkserver.py
+1
-1
util.py
Lib/multiprocessing/util.py
+0
-20
No files found.
Lib/multiprocessing/forkserver.py
Dosyayı görüntüle @
0d097b62
...
...
@@ -108,7 +108,7 @@ def ensure_running():
# all client processes own the write end of the "alive" pipe;
# when they all terminate the read end becomes ready.
alive_r
,
alive_w
=
util
.
pipe
()
alive_r
,
alive_w
=
os
.
pipe
()
try
:
fds_to_pass
=
[
listener
.
fileno
(),
alive_r
]
cmd
%=
(
listener
.
fileno
(),
alive_r
,
_preload_modules
,
data
)
...
...
Lib/multiprocessing/util.py
Dosyayı görüntüle @
0d097b62
...
...
@@ -358,13 +358,6 @@ def close_all_fds_except(fds):
def
spawnv_passfds
(
path
,
args
,
passfds
):
import
_posixsubprocess
,
fcntl
passfds
=
sorted
(
passfds
)
tmp
=
[]
# temporarily unset CLOEXEC on passed fds
for
fd
in
passfds
:
flag
=
fcntl
.
fcntl
(
fd
,
fcntl
.
F_GETFD
)
if
flag
&
fcntl
.
FD_CLOEXEC
:
fcntl
.
fcntl
(
fd
,
fcntl
.
F_SETFD
,
flag
&
~
fcntl
.
FD_CLOEXEC
)
tmp
.
append
((
fd
,
flag
))
errpipe_read
,
errpipe_write
=
os
.
pipe
()
try
:
return
_posixsubprocess
.
fork_exec
(
...
...
@@ -374,16 +367,3 @@ def spawnv_passfds(path, args, passfds):
finally
:
os
.
close
(
errpipe_read
)
os
.
close
(
errpipe_write
)
# reset CLOEXEC where necessary
for
fd
,
flag
in
tmp
:
fcntl
.
fcntl
(
fd
,
fcntl
.
F_SETFD
,
flag
)
#
# Return pipe with CLOEXEC set on fds
#
# Deprecated: os.pipe() creates non-inheritable file descriptors
# since Python 3.4
#
def
pipe
():
return
os
.
pipe
()
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