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
6f33e294
Kaydet (Commit)
6f33e294
authored
Kas 20, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of arguments
üst
1325ee09
859fd7bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
test_os.py
Lib/test/test_os.py
+21
-0
posixmodule.c
Modules/posixmodule.c
+10
-0
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
6f33e294
...
...
@@ -2321,6 +2321,27 @@ class SpawnTests(unittest.TestCase):
exitcode
=
os
.
spawnve
(
os
.
P_WAIT
,
args
[
0
],
args
,
self
.
env
)
self
.
assertEqual
(
exitcode
,
self
.
exitcode
)
@requires_os_func
(
'spawnl'
)
def
test_spawnl_noargs
(
self
):
args
=
self
.
create_args
()
self
.
assertRaises
(
ValueError
,
os
.
spawnl
,
os
.
P_NOWAIT
,
args
[
0
])
@requires_os_func
(
'spawnle'
)
def
test_spawnl_noargs
(
self
):
args
=
self
.
create_args
()
self
.
assertRaises
(
ValueError
,
os
.
spawnle
,
os
.
P_NOWAIT
,
args
[
0
],
{})
@requires_os_func
(
'spawnv'
)
def
test_spawnv_noargs
(
self
):
args
=
self
.
create_args
()
self
.
assertRaises
(
ValueError
,
os
.
spawnv
,
os
.
P_NOWAIT
,
args
[
0
],
())
self
.
assertRaises
(
ValueError
,
os
.
spawnv
,
os
.
P_NOWAIT
,
args
[
0
],
[])
@requires_os_func
(
'spawnve'
)
def
test_spawnv_noargs
(
self
):
args
=
self
.
create_args
()
self
.
assertRaises
(
ValueError
,
os
.
spawnve
,
os
.
P_NOWAIT
,
args
[
0
],
(),
{})
self
.
assertRaises
(
ValueError
,
os
.
spawnve
,
os
.
P_NOWAIT
,
args
[
0
],
[],
{})
# The introduction of this TestCase caused at least two different errors on
# *nix buildbots. Temporarily skip this to let the buildbots move along.
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
6f33e294
...
...
@@ -5042,6 +5042,11 @@ os_spawnv_impl(PyObject *module, int mode, path_t *path, PyObject *argv)
"spawnv() arg 2 must be a tuple or list"
);
return
NULL
;
}
if
(
argc
==
0
)
{
PyErr_SetString
(
PyExc_ValueError
,
"spawnv() arg 2 cannot be empty"
);
return
NULL
;
}
argvlist
=
PyMem_NEW
(
EXECV_CHAR
*
,
argc
+
1
);
if
(
argvlist
==
NULL
)
{
...
...
@@ -5127,6 +5132,11 @@ os_spawnve_impl(PyObject *module, int mode, path_t *path, PyObject *argv,
"spawnve() arg 2 must be a tuple or list"
);
goto
fail_0
;
}
if
(
argc
==
0
)
{
PyErr_SetString
(
PyExc_ValueError
,
"spawnve() arg 2 cannot be empty"
);
goto
fail_0
;
}
if
(
!
PyMapping_Check
(
env
))
{
PyErr_SetString
(
PyExc_TypeError
,
"spawnve() arg 3 must be a mapping object"
);
...
...
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