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
2f156457
Kaydet (Commit)
2f156457
authored
Mar 03, 2017
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio: Fix trailing whitespace/code style
üst
481cb70a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
subprocess.py
Lib/asyncio/subprocess.py
+2
-2
test_subprocess.py
Lib/test/test_asyncio/test_subprocess.py
+6
-4
No files found.
Lib/asyncio/subprocess.py
Dosyayı görüntüle @
2f156457
...
...
@@ -89,7 +89,7 @@ class SubprocessStreamProtocol(streams.FlowControlMixin,
reader
.
feed_eof
()
else
:
reader
.
set_exception
(
exc
)
if
fd
in
self
.
_pipe_fds
:
self
.
_pipe_fds
.
remove
(
fd
)
self
.
_maybe_close_transport
()
...
...
@@ -97,7 +97,7 @@ class SubprocessStreamProtocol(streams.FlowControlMixin,
def
process_exited
(
self
):
self
.
_process_exited
=
True
self
.
_maybe_close_transport
()
def
_maybe_close_transport
(
self
):
if
len
(
self
.
_pipe_fds
)
==
0
and
self
.
_process_exited
:
self
.
_transport
.
close
()
...
...
Lib/test/test_asyncio/test_subprocess.py
Dosyayı görüntüle @
2f156457
...
...
@@ -468,9 +468,11 @@ class SubprocessMixin:
'sys.stdout.flush()'
,
'sys.exit(1)'
])
fut
=
asyncio
.
create_subprocess_exec
(
sys
.
executable
,
'-c'
,
code
,
stdout
=
asyncio
.
subprocess
.
PIPE
,
loop
=
self
.
loop
)
fut
=
asyncio
.
create_subprocess_exec
(
sys
.
executable
,
'-c'
,
code
,
stdout
=
asyncio
.
subprocess
.
PIPE
,
loop
=
self
.
loop
)
process
=
yield
from
fut
while
True
:
data
=
yield
from
process
.
stdout
.
read
(
65536
)
...
...
@@ -480,7 +482,7 @@ class SubprocessMixin:
break
self
.
loop
.
run_until_complete
(
execute
())
if
sys
.
platform
!=
'win32'
:
# Unix
...
...
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