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
f4140640
Kaydet (Commit)
f4140640
authored
Tem 06, 2008
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Issue #2113: Fix error in subprocess.Popen if the select system call is
interrupted by a signal.
üst
2fe77060
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
subprocess.py
Lib/subprocess.py
+6
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/subprocess.py
Dosyayı görüntüle @
f4140640
...
...
@@ -1158,7 +1158,12 @@ class Popen(object):
input_offset
=
0
while
read_set
or
write_set
:
rlist
,
wlist
,
xlist
=
select
.
select
(
read_set
,
write_set
,
[])
try
:
rlist
,
wlist
,
xlist
=
select
.
select
(
read_set
,
write_set
,
[])
except
select
.
error
,
e
:
if
e
.
args
[
0
]
==
errno
.
EINTR
:
continue
raise
if
self
.
stdin
in
wlist
:
# When select has indicated that the file is writable,
...
...
Misc/NEWS
Dosyayı görüntüle @
f4140640
...
...
@@ -59,6 +59,9 @@ Library
urllib module in Python 3.0 to urllib.request, urllib.parse, and
urllib.error.
- Issue #2113: Fix error in subprocess.Popen if the select system call is
interrupted by a signal.
Build
-----
...
...
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