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
47f14bad
Kaydet (Commit)
47f14bad
authored
Ock 03, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Un-complicate some code
üst
dcdc3b4c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
15 deletions
+5
-15
subprocess.py
Lib/subprocess.py
+5
-15
No files found.
Lib/subprocess.py
Dosyayı görüntüle @
47f14bad
...
...
@@ -1092,15 +1092,9 @@ class Popen(object):
errread
,
errwrite
)
def
_close_fds
(
self
,
but
):
os
.
closerange
(
3
,
but
)
os
.
closerange
(
but
+
1
,
MAXFD
)
def
_close_all_but_a_sorted_few_fds
(
self
,
fds_to_keep
):
# precondition: fds_to_keep must be sorted and unique
def
_close_fds
(
self
,
fds_to_keep
):
start_fd
=
3
for
fd
in
fds_to_keep
:
for
fd
in
sorted
(
fds_to_keep
)
:
if
fd
>=
start_fd
:
os
.
closerange
(
start_fd
,
fd
)
start_fd
=
fd
+
1
...
...
@@ -1216,13 +1210,9 @@ class Popen(object):
# Close all other fds, if asked for
if
close_fds
:
if
pass_fds
:
fds_to_keep
=
set
(
pass_fds
)
fds_to_keep
.
add
(
errpipe_write
)
self
.
_close_all_but_a_sorted_few_fds
(
sorted
(
fds_to_keep
))
else
:
self
.
_close_fds
(
but
=
errpipe_write
)
fds_to_keep
=
set
(
pass_fds
)
fds_to_keep
.
add
(
errpipe_write
)
self
.
_close_fds
(
fds_to_keep
)
if
cwd
is
not
None
:
...
...
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