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
a1afeec9
Kaydet (Commit)
a1afeec9
authored
Şub 09, 2014
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com
üst
87bf2772
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
asyncio-protocol.rst
Doc/library/asyncio-protocol.rst
+1
-1
asyncio-subprocess.rst
Doc/library/asyncio-subprocess.rst
+3
-3
asyncio-task.rst
Doc/library/asyncio-task.rst
+2
-2
asyncio.rst
Doc/library/asyncio.rst
+1
-1
No files found.
Doc/library/asyncio-protocol.rst
Dosyayı görüntüle @
a1afeec9
...
...
@@ -194,7 +194,7 @@ BaseSubprocessTransport
.. method:: get_pipe_transport(fd)
Return the transport for the communication pipe correspond
o
ng to the
Return the transport for the communication pipe correspond
i
ng to the
integer file descriptor *fd*. The return value can be a readable or
writable streaming transport, depending on the *fd*. If *fd* doesn't
correspond to a pipe belonging to this transport, :const:`None` is
...
...
Doc/library/asyncio-subprocess.rst
Dosyayı görüntüle @
a1afeec9
...
...
@@ -3,8 +3,8 @@
Subprocess
==========
Create a subproces
------------------
Create a subproces
s
------------------
-
.. function:: create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds)
...
...
@@ -116,7 +116,7 @@ Process
Kills the child. On Posix OSs the function sends :py:data:`SIGKILL` to
the child. On Windows :meth:`kill` is an alias for :meth:`terminate`.
.. method:: send_signal(signal
e
)
.. method:: send_signal(signal)
Sends the signal *signal* to the child process.
...
...
Doc/library/asyncio-task.rst
Dosyayı görüntüle @
a1afeec9
...
...
@@ -111,7 +111,7 @@ Example chaining coroutines::
loop.close()
``compute()`` is chained to ``print_sum()``: ``print_sum()`` coroutine waits
until ``compute()`` is completed before returing its result.
until ``compute()`` is completed before retur
n
ing its result.
Sequence diagram of the example:
...
...
@@ -315,7 +315,7 @@ Task
The frames are always ordered from oldest to newest.
The optional limit gives the maximum num
m
ber of frames to return; by
The optional limit gives the maximum number of frames to return; by
default all available frames are returned. Its meaning differs depending
on whether a stack or a traceback is returned: the newest frames of a
stack are returned, but the oldest frames of a traceback are returned.
...
...
Doc/library/asyncio.rst
Dosyayı görüntüle @
a1afeec9
...
...
@@ -24,7 +24,7 @@ Here is a more detailed list of the package contents:
* concrete support for TCP, UDP, SSL, subprocess pipes, delayed calls, and
others (some may be system-dependent);
* a :class:`Future` class that mimic
k
s the one in the :mod:`concurrent.futures`
* a :class:`Future` class that mimics the one in the :mod:`concurrent.futures`
module, but adapted for use with the event loop;
* coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write
...
...
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