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
933a8c82
Kaydet (Commit)
933a8c82
authored
Ara 03, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio doc: reorder methods; typo
üst
1ca5ba61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
asyncio-protocol.rst
Doc/library/asyncio-protocol.rst
+13
-13
asyncio-task.rst
Doc/library/asyncio-task.rst
+1
-1
No files found.
Doc/library/asyncio-protocol.rst
Dosyayı görüntüle @
933a8c82
...
@@ -192,12 +192,6 @@ BaseSubprocessTransport
...
@@ -192,12 +192,6 @@ BaseSubprocessTransport
Return the subprocess process id as an integer.
Return the subprocess process id as an integer.
.. method:: get_returncode()
Return the subprocess returncode as an integer or :const:`None`
if it hasn't returned, similarly to the
:attr:`subprocess.Popen.returncode` attribute.
.. method:: get_pipe_transport(fd)
.. method:: get_pipe_transport(fd)
Return the transport for the communication pipe correspondong to the
Return the transport for the communication pipe correspondong to the
...
@@ -206,6 +200,19 @@ BaseSubprocessTransport
...
@@ -206,6 +200,19 @@ BaseSubprocessTransport
correspond to a pipe belonging to this transport, :const:`None` is
correspond to a pipe belonging to this transport, :const:`None` is
returned.
returned.
.. method:: get_returncode()
Return the subprocess returncode as an integer or :const:`None`
if it hasn't returned, similarly to the
:attr:`subprocess.Popen.returncode` attribute.
.. method:: kill(self)
Kill the subprocess, as in :meth:`subprocess.Popen.kill`
On POSIX systems, the function sends SIGKILL to the subprocess.
On Windows, this method is an alias for :meth:`terminate`.
.. method:: send_signal(signal)
.. method:: send_signal(signal)
Send the *signal* number to the subprocess, as in
Send the *signal* number to the subprocess, as in
...
@@ -220,13 +227,6 @@ BaseSubprocessTransport
...
@@ -220,13 +227,6 @@ BaseSubprocessTransport
On Windows, the Windows API function TerminateProcess() is called to
On Windows, the Windows API function TerminateProcess() is called to
stop the subprocess.
stop the subprocess.
.. method:: kill(self)
Kill the subprocess, as in :meth:`subprocess.Popen.kill`
On POSIX systems, the function sends SIGKILL to the subprocess.
On Windows, this method is an alias for :meth:`terminate`.
StreamWriter
StreamWriter
------------
------------
...
...
Doc/library/asyncio-task.rst
Dosyayı görüntüle @
933a8c82
...
@@ -199,7 +199,7 @@ Task functions
...
@@ -199,7 +199,7 @@ Task functions
or ``None``, there is no limit to the wait time.
or ``None``, there is no limit to the wait time.
*return_when* indicates when this function should return. It must be one of
*return_when* indicates when this function should return. It must be one of
the following constants of the :mod`concurrent.futures` module:
the following constants of the :mod
:
`concurrent.futures` module:
.. tabularcolumns:: |l|L|
.. tabularcolumns:: |l|L|
...
...
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