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
ad62489e
Kaydet (Commit)
ad62489e
authored
Haz 04, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1500293: fix memory leaks in _subprocess module.
üst
ddbaa660
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
8 deletions
+15
-8
subprocess.py
Lib/subprocess.py
+5
-5
_subprocess.c
PC/_subprocess.c
+10
-3
No files found.
Lib/subprocess.py
Dosyayı görüntüle @
ad62489e
...
...
@@ -388,6 +388,7 @@ if mswindows:
hStdInput
=
None
hStdOutput
=
None
hStdError
=
None
wShowWindow
=
0
class
pywintypes
:
error
=
IOError
else
:
...
...
@@ -744,18 +745,17 @@ class Popen(object):
args
=
list2cmdline
(
args
)
# Process startup details
default_startupinfo
=
STARTUPINFO
()
if
startupinfo
is
None
:
startupinfo
=
default_startupinfo
if
not
None
in
(
p2cread
,
c2pwrite
,
errwrite
):
startupinfo
=
STARTUPINFO
()
if
None
not
in
(
p2cread
,
c2pwrite
,
errwrite
):
startupinfo
.
dwFlags
|=
STARTF_USESTDHANDLES
startupinfo
.
hStdInput
=
p2cread
startupinfo
.
hStdOutput
=
c2pwrite
startupinfo
.
hStdError
=
errwrite
if
shell
:
default_
startupinfo
.
dwFlags
|=
STARTF_USESHOWWINDOW
default_
startupinfo
.
wShowWindow
=
SW_HIDE
startupinfo
.
dwFlags
|=
STARTF_USESHOWWINDOW
startupinfo
.
wShowWindow
=
SW_HIDE
comspec
=
os
.
environ
.
get
(
"COMSPEC"
,
"cmd.exe"
)
args
=
comspec
+
" /c "
+
args
if
(
GetVersion
()
>=
0x80000000
L
or
...
...
PC/_subprocess.c
Dosyayı görüntüle @
ad62489e
...
...
@@ -250,19 +250,23 @@ static int
getint
(
PyObject
*
obj
,
char
*
name
)
{
PyObject
*
value
;
int
ret
;
value
=
PyObject_GetAttrString
(
obj
,
name
);
if
(
!
value
)
{
PyErr_Clear
();
/* FIXME: propagate error? */
return
0
;
}
return
(
int
)
PyInt_AsLong
(
value
);
ret
=
(
int
)
PyInt_AsLong
(
value
);
Py_DECREF
(
value
);
return
ret
;
}
static
HANDLE
gethandle
(
PyObject
*
obj
,
char
*
name
)
{
sp_handle_object
*
value
;
HANDLE
ret
;
value
=
(
sp_handle_object
*
)
PyObject_GetAttrString
(
obj
,
name
);
if
(
!
value
)
{
...
...
@@ -270,8 +274,11 @@ gethandle(PyObject* obj, char* name)
return
NULL
;
}
if
(
value
->
ob_type
!=
&
sp_handle_type
)
return
NULL
;
return
value
->
handle
;
ret
=
NULL
;
else
ret
=
value
->
handle
;
Py_DECREF
(
value
);
return
ret
;
}
static
PyObject
*
...
...
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