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
90374f51
Kaydet (Commit)
90374f51
authored
Agu 06, 2010
tarafından
Tim Golden
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #3210: Ensure stdio handles are closed if CreateProcess fails
üst
3ad323ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
2 deletions
+37
-2
test_subprocess.py
Lib/test/test_subprocess.py
+20
-0
_subprocess.c
PC/_subprocess.c
+17
-2
No files found.
Lib/test/test_subprocess.py
Dosyayı görüntüle @
90374f51
...
...
@@ -533,6 +533,26 @@ class ProcessTestCase(BaseTestCase):
if
c
.
exception
.
errno
!=
2
:
# ignore "no such file"
raise
c
.
exception
def
test_handles_closed_on_exception
(
self
):
# If CreateProcess exits with an error, ensure the
# duplicate output handles are released
ifhandle
,
ifname
=
mkstemp
()
ofhandle
,
ofname
=
mkstemp
()
efhandle
,
efname
=
mkstemp
()
try
:
subprocess
.
Popen
([
"*"
],
stdin
=
ifhandle
,
stdout
=
ofhandle
,
stderr
=
efhandle
)
except
OSError
:
os
.
close
(
ifhandle
)
os
.
remove
(
ifname
)
os
.
close
(
ofhandle
)
os
.
remove
(
ofname
)
os
.
close
(
efhandle
)
os
.
remove
(
efname
)
self
.
assertFalse
(
os
.
path
.
exists
(
ifname
))
self
.
assertFalse
(
os
.
path
.
exists
(
ofname
))
self
.
assertFalse
(
os
.
path
.
exists
(
efname
))
# context manager
class
_SuppressCoreFiles
(
object
):
...
...
PC/_subprocess.c
Dosyayı görüntüle @
90374f51
...
...
@@ -425,6 +425,7 @@ sp_CreateProcess(PyObject* self, PyObject* args)
PyObject
*
env_mapping
;
char
*
current_directory
;
PyObject
*
startup_info
;
DWORD
error
;
if
(
!
PyArg_ParseTuple
(
args
,
"zzOOiiOzO:CreateProcess"
,
&
application_name
,
...
...
@@ -474,8 +475,22 @@ sp_CreateProcess(PyObject* self, PyObject* args)
Py_XDECREF
(
environment
);
if
(
!
result
)
return
PyErr_SetFromWindowsErr
(
GetLastError
());
if
(
!
result
)
{
error
=
GetLastError
();
if
(
si
.
hStdInput
!=
INVALID_HANDLE_VALUE
)
{
CloseHandle
(
si
.
hStdInput
);
si
.
hStdInput
=
INVALID_HANDLE_VALUE
;
}
if
(
si
.
hStdOutput
!=
INVALID_HANDLE_VALUE
)
{
CloseHandle
(
si
.
hStdOutput
);
si
.
hStdOutput
=
INVALID_HANDLE_VALUE
;
}
if
(
si
.
hStdError
!=
INVALID_HANDLE_VALUE
)
{
CloseHandle
(
si
.
hStdError
);
si
.
hStdError
=
INVALID_HANDLE_VALUE
;
}
return
PyErr_SetFromWindowsErr
(
error
);
}
return
Py_BuildValue
(
"NNii"
,
sp_handle_new
(
pi
.
hProcess
),
...
...
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