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
a6dff3e7
Kaydet (Commit)
a6dff3e7
authored
Şub 01, 1999
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
spawnv, spawnve docstrings: added mode parameter; this is required!
üst
dbd72a4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
posixmodule.c
Modules/posixmodule.c
+4
-2
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
a6dff3e7
...
@@ -1413,9 +1413,10 @@ posix_execve(self, args)
...
@@ -1413,9 +1413,10 @@ posix_execve(self, args)
#ifdef HAVE_SPAWNV
#ifdef HAVE_SPAWNV
static
char
posix_spawnv__doc__
[]
=
static
char
posix_spawnv__doc__
[]
=
"spawnv(path, args)
\n
\
"spawnv(
mode,
path, args)
\n
\
Execute an executable path with arguments, replacing current process.
\n
\
Execute an executable path with arguments, replacing current process.
\n
\
\n
\
\n
\
mode: mode of process creation
\n
\
path: path of executable file
\n
\
path: path of executable file
\n
\
args: tuple or list of strings"
;
args: tuple or list of strings"
;
...
@@ -1472,9 +1473,10 @@ posix_spawnv(self, args)
...
@@ -1472,9 +1473,10 @@ posix_spawnv(self, args)
static
char
posix_spawnve__doc__
[]
=
static
char
posix_spawnve__doc__
[]
=
"spawnve(path, args, env)
\n
\
"spawnve(
mode,
path, args, env)
\n
\
Execute a path with arguments and environment, replacing current process.
\n
\
Execute a path with arguments and environment, replacing current process.
\n
\
\n
\
\n
\
mode: mode of process creation
\n
\
path: path of executable file
\n
\
path: path of executable file
\n
\
args: tuple or list of arguments
\n
\
args: tuple or list of arguments
\n
\
env: dictonary of strings mapping to strings"
;
env: dictonary of strings mapping to strings"
;
...
...
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