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
b5aa4071
Kaydet (Commit)
b5aa4071
authored
Tem 07, 2003
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use Boolean values for the capturestderr flag.
üst
70fedcd5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
popen2.py
Lib/popen2.py
+3
-3
No files found.
Lib/popen2.py
Dosyayı görüntüle @
b5aa4071
...
...
@@ -25,7 +25,7 @@ class Popen3:
sts
=
-
1
# Child not completed yet
def
__init__
(
self
,
cmd
,
capturestderr
=
0
,
bufsize
=-
1
):
def
__init__
(
self
,
cmd
,
capturestderr
=
False
,
bufsize
=-
1
):
"""The parameter 'cmd' is the shell command to execute in a
sub-process. The 'capturestderr' flag, if true, specifies that
the object should capture standard error output of the child process.
...
...
@@ -141,14 +141,14 @@ else:
"""Execute the shell command 'cmd' in a sub-process. If 'bufsize' is
specified, it sets the buffer size for the I/O pipes. The file objects
(child_stdout, child_stdin) are returned."""
inst
=
Popen3
(
cmd
,
0
,
bufsize
)
inst
=
Popen3
(
cmd
,
False
,
bufsize
)
return
inst
.
fromchild
,
inst
.
tochild
def
popen3
(
cmd
,
bufsize
=-
1
,
mode
=
't'
):
"""Execute the shell command 'cmd' in a sub-process. If 'bufsize' is
specified, it sets the buffer size for the I/O pipes. The file objects
(child_stdout, child_stdin, child_stderr) are returned."""
inst
=
Popen3
(
cmd
,
1
,
bufsize
)
inst
=
Popen3
(
cmd
,
True
,
bufsize
)
return
inst
.
fromchild
,
inst
.
tochild
,
inst
.
childerr
def
popen4
(
cmd
,
bufsize
=-
1
,
mode
=
't'
):
...
...
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