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
a293dd93
Commit
a293dd93
authored
Feb 09, 2014
by
Eli Bendersky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various formatting & grammar fixes in asyncio* docs.
parent
534a5e12
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
Doc/library/asyncio-dev.rst
Doc/library/asyncio-dev.rst
+1
-1
Doc/library/asyncio-eventloop.rst
Doc/library/asyncio-eventloop.rst
+4
-4
Doc/library/asyncio.rst
Doc/library/asyncio.rst
+1
-1
No files found.
Doc/library/asyncio-dev.rst
View file @
a293dd93
...
...
@@ -44,7 +44,7 @@ the event loop.
.. _asyncio-handle-blocking:
Handle
correctly blocking functions
Handle
blocking functions correctly
-----------------------------------
Blocking functions should not be called directly. For example, if a function
...
...
Doc/library/asyncio-eventloop.rst
View file @
a293dd93
...
...
@@ -8,15 +8,15 @@ Event loops
The event loop is the central execution device provided by :mod:`asyncio`.
It provides multiple facilities, amongst which:
* Registering, executing and cancelling delayed calls (timeouts)
* Registering, executing and cancelling delayed calls (timeouts)
.
* Creating client and server :ref:`transports <asyncio-transport>` for various
kinds of communication
kinds of communication
.
* Launching subprocesses and the associated :ref:`transports <asyncio-transport>`
for communication with an external program
for communication with an external program
.
* Delegating costly function calls to a pool of threads
* Delegating costly function calls to a pool of threads
.
Event loop functions
--------------------
...
...
Doc/library/asyncio.rst
View file @
a293dd93
...
...
@@ -30,7 +30,7 @@ Here is a more detailed list of the package contents:
* coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write
concurrent code in a sequential fashion;
* cancellation support for
Future
s and coroutines;
* cancellation support for
:class:`Future`\
s and coroutines;
* :ref:`synchronization primitives <asyncio-sync>` for use between coroutines in
a single thread, mimicking those in the :mod:`threading` module;
...
...
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