Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a1afeec9
Commit
a1afeec9
authored
Feb 08, 2014
by
Brian Curtin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com
parent
87bf2772
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
Doc/library/asyncio-protocol.rst
Doc/library/asyncio-protocol.rst
+1
-1
Doc/library/asyncio-subprocess.rst
Doc/library/asyncio-subprocess.rst
+3
-3
Doc/library/asyncio-task.rst
Doc/library/asyncio-task.rst
+2
-2
Doc/library/asyncio.rst
Doc/library/asyncio.rst
+1
-1
No files found.
Doc/library/asyncio-protocol.rst
View file @
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
View file @
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
View file @
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
View file @
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