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
1241ecc2
Kaydet (Commit)
1241ecc2
authored
Ock 29, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private
üst
0698638d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
base_subprocess.py
Lib/asyncio/base_subprocess.py
+1
-1
subprocess.py
Lib/asyncio/subprocess.py
+1
-1
unix_events.py
Lib/asyncio/unix_events.py
+1
-1
windows_events.py
Lib/asyncio/windows_events.py
+1
-1
No files found.
Lib/asyncio/base_subprocess.py
Dosyayı görüntüle @
1241ecc2
...
@@ -208,7 +208,7 @@ class BaseSubprocessTransport(transports.SubprocessTransport):
...
@@ -208,7 +208,7 @@ class BaseSubprocessTransport(transports.SubprocessTransport):
waiter
.
set_result
(
returncode
)
waiter
.
set_result
(
returncode
)
self
.
_exit_waiters
=
None
self
.
_exit_waiters
=
None
def
wait
(
self
):
def
_
wait
(
self
):
"""Wait until the process exit and return the process return code.
"""Wait until the process exit and return the process return code.
This method is a coroutine."""
This method is a coroutine."""
...
...
Lib/asyncio/subprocess.py
Dosyayı görüntüle @
1241ecc2
...
@@ -115,7 +115,7 @@ class Process:
...
@@ -115,7 +115,7 @@ class Process:
"""Wait until the process exit and return the process return code.
"""Wait until the process exit and return the process return code.
This method is a coroutine."""
This method is a coroutine."""
return
(
yield
from
self
.
_transport
.
wait
())
return
(
yield
from
self
.
_transport
.
_
wait
())
def
send_signal
(
self
,
signal
):
def
send_signal
(
self
,
signal
):
self
.
_transport
.
send_signal
(
signal
)
self
.
_transport
.
send_signal
(
signal
)
...
...
Lib/asyncio/unix_events.py
Dosyayı görüntüle @
1241ecc2
...
@@ -188,7 +188,7 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):
...
@@ -188,7 +188,7 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):
yield
from
waiter
yield
from
waiter
except
:
except
:
transp
.
close
()
transp
.
close
()
yield
from
transp
.
wait
()
yield
from
transp
.
_
wait
()
raise
raise
return
transp
return
transp
...
...
Lib/asyncio/windows_events.py
Dosyayı görüntüle @
1241ecc2
...
@@ -375,7 +375,7 @@ class ProactorEventLoop(proactor_events.BaseProactorEventLoop):
...
@@ -375,7 +375,7 @@ class ProactorEventLoop(proactor_events.BaseProactorEventLoop):
yield
from
waiter
yield
from
waiter
except
:
except
:
transp
.
close
()
transp
.
close
()
yield
from
transp
.
wait
()
yield
from
transp
.
_
wait
()
raise
raise
return
transp
return
transp
...
...
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