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
7e3535cb
Kaydet (Commit)
7e3535cb
authored
Şub 02, 1999
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added documentation to the docstrings for the W*() functions that take
a process exit status as a parameter.
üst
26a69db4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
posixmodule.c
Modules/posixmodule.c
+8
-6
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
7e3535cb
...
...
@@ -2851,7 +2851,7 @@ posix_strerror(self, args)
#ifdef WIFSTOPPED
static
char
posix_WIFSTOPPED__doc__
[]
=
"WIFSTOPPED(status) -> Boolean
\n
\
See Unix documentation
."
;
Return true if the process returning 'status' was stopped
."
;
static
PyObject
*
posix_WIFSTOPPED
(
self
,
args
)
...
...
@@ -2879,7 +2879,7 @@ posix_WIFSTOPPED(self, args)
#ifdef WIFSIGNALED
static
char
posix_WIFSIGNALED__doc__
[]
=
"WIFSIGNALED(status) -> Boolean
\n
\
See Unix documentation
."
;
Retrun true if the process returning 'status' was terminated by a signal
."
;
static
PyObject
*
posix_WIFSIGNALED
(
self
,
args
)
...
...
@@ -2907,7 +2907,8 @@ posix_WIFSIGNALED(self, args)
#ifdef WIFEXITED
static
char
posix_WIFEXITED__doc__
[]
=
"WIFEXITED(status) -> Boolean
\n
\
See Unix documentation."
;
Return true if the process returning 'status' exited using the exit()
\n
\
system call."
;
static
PyObject
*
posix_WIFEXITED
(
self
,
args
)
...
...
@@ -2935,7 +2936,7 @@ posix_WIFEXITED(self, args)
#ifdef WEXITSTATUS
static
char
posix_WEXITSTATUS__doc__
[]
=
"WEXITSTATUS(status) -> integer
\n
\
See Unix documentation
."
;
Return the process return code from 'status'
."
;
static
PyObject
*
posix_WEXITSTATUS
(
self
,
args
)
...
...
@@ -2963,7 +2964,8 @@ posix_WEXITSTATUS(self, args)
#ifdef WTERMSIG
static
char
posix_WTERMSIG__doc__
[]
=
"WTERMSIG(status) -> integer
\n
\
See Unix documentation."
;
Return the signal that terminated the process that provided the 'status'
\n
\
value."
;
static
PyObject
*
posix_WTERMSIG
(
self
,
args
)
...
...
@@ -2991,7 +2993,7 @@ posix_WTERMSIG(self, args)
#ifdef WSTOPSIG
static
char
posix_WSTOPSIG__doc__
[]
=
"WSTOPSIG(status) -> integer
\n
\
See Unix documentation
."
;
Return the signal that stopped the process that provided the 'status' value
."
;
static
PyObject
*
posix_WSTOPSIG
(
self
,
args
)
...
...
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