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
394374e3
Commit
394374e3
authored
Sep 17, 2018
by
Yury Selivanov
Committed by
GitHub
Sep 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-33649: Add low-level APIs index. (GH-9364)
parent
c6fd1c1c
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
571 additions
and
31 deletions
+571
-31
Doc/library/asyncio-api-index.rst
Doc/library/asyncio-api-index.rst
+16
-4
Doc/library/asyncio-eventloop.rst
Doc/library/asyncio-eventloop.rst
+8
-6
Doc/library/asyncio-future.rst
Doc/library/asyncio-future.rst
+2
-0
Doc/library/asyncio-llapi-index.rst
Doc/library/asyncio-llapi-index.rst
+510
-0
Doc/library/asyncio-protocol.rst
Doc/library/asyncio-protocol.rst
+9
-6
Doc/library/asyncio-stream.rst
Doc/library/asyncio-stream.rst
+5
-5
Doc/library/asyncio-subprocess.rst
Doc/library/asyncio-subprocess.rst
+3
-1
Doc/library/asyncio-task.rst
Doc/library/asyncio-task.rst
+2
-2
Doc/library/asyncio.rst
Doc/library/asyncio.rst
+7
-7
Doc/tools/templates/layout.html
Doc/tools/templates/layout.html
+9
-0
No files found.
Doc/library/asyncio-api-index.rst
View file @
394374e3
.. currentmodule:: asyncio
====================
=
High-level API
s
Index
====================
=
====================
High-level API Index
====================
This page lists all high-level async/await enabled asyncio APIs.
...
...
@@ -16,6 +16,7 @@ await on multiple things with timeouts.
.. list-table::
:widths: 50 50
:class: full-width-table
* - :func:`run`
- Create event loop, run a coroutine, close the loop.
...
...
@@ -36,7 +37,7 @@ await on multiple things with timeouts.
- Shield from cancellation.
* - ``await`` :func:`wait`
- Monitor for complet
eness
.
- Monitor for complet
ion
.
* - :func:`current_task`
- Return the current Task.
...
...
@@ -47,6 +48,12 @@ await on multiple things with timeouts.
* - :class:`Task`
- Task object.
* - :func:`run_coroutine_threadsafe`
- Schedule a coroutine from another OS thread.
* - ``for in`` :func:`as_completed`
- Monitor for completion with a ``for`` loop.
.. rubric:: Examples
...
...
@@ -72,6 +79,7 @@ implement connection pools, and pub/sub patterns.
.. list-table::
:widths: 50 50
:class: full-width-table
* - :class:`Queue`
- A FIFO queue.
...
...
@@ -98,6 +106,7 @@ Utilities to spawn subprocesses and run shell commands.
.. list-table::
:widths: 50 50
:class: full-width-table
* - ``await`` :func:`create_subprocess_exec`
- Create a subprocess.
...
...
@@ -121,6 +130,7 @@ High-level APIs to work with network IO.
.. list-table::
:widths: 50 50
:class: full-width-table
* - ``await`` :func:`open_connection`
- Establish a TCP connection.
...
...
@@ -156,6 +166,7 @@ Threading-like synchronization primitives that can be used in Tasks.
.. list-table::
:widths: 50 50
:class: full-width-table
* - :class:`Lock`
- A mutex lock.
...
...
@@ -186,6 +197,7 @@ Exceptions
.. list-table::
:widths: 50 50
:class: full-width-table
* - :exc:`asyncio.TimeoutError`
...
...
Doc/library/asyncio-eventloop.rst
View file @
394374e3
...
...
@@ -980,7 +980,7 @@ Availability: UNIX.
Executing code in thread or process pools
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. method:: loop.run_in_executor(executor, func, \*args)
..
coroutine
method:: loop.run_in_executor(executor, func, \*args)
Arrange for a *func* to be called in the specified executor.
...
...
@@ -1418,7 +1418,7 @@ need to be written this way; consider using high-level functions
like :func:`asyncio.run`.
.. _asyncio
-hello-world-callback
:
.. _asyncio
_example_lowlevel_helloworld
:
Hello World with call_soon()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
...
@@ -1451,7 +1451,7 @@ event loop::
example created with a coroutine and the :func:`run` function.
.. _asyncio
-date-callback
:
.. _asyncio
_example_call_later
:
Display the current date with call_later()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
...
@@ -1488,7 +1488,7 @@ during 5 seconds, and then stops the event loop::
created with a coroutine and the :func:`run` function.
.. _asyncio
-watch-read-event
:
.. _asyncio
_example_watch_fd
:
Watch a file descriptor for read events
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
...
@@ -1531,15 +1531,17 @@ Wait until a file descriptor received some data using the
.. seealso::
* A similar :ref:`example <asyncio
-register-socket
>`
* A similar :ref:`example <asyncio
_example_create_connection
>`
using transports, protocols, and the
:meth:`loop.create_connection` method.
* Another similar :ref:`example <asyncio
-register-socket
-streams>`
* Another similar :ref:`example <asyncio
_example_create_connection
-streams>`
using the high-level :func:`asyncio.open_connection` function
and streams.
.. _asyncio_example_unix_signals:
Set signal handlers for SIGINT and SIGTERM
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
...
Doc/library/asyncio-future.rst
View file @
394374e3
...
...
@@ -191,6 +191,8 @@ Future Object
.. versionadded:: 3.7
.. _asyncio_example_future:
This example creates a Future object, creates and schedules an
asynchronous Task to set result for the Future, and waits until
the Future has a result::
...
...
Doc/library/asyncio-llapi-index.rst
0 → 100644
View file @
394374e3
This diff is collapsed.
Click to expand it.
Doc/library/asyncio-protocol.rst
View file @
394374e3
...
...
@@ -707,7 +707,7 @@ factories passed to the :meth:`loop.subprocess_exec` and
Examples
========
.. _asyncio
-tcp-echo-server-
protocol:
.. _asyncio
_example_tcp_echo_server_
protocol:
TCP Echo Server
---------------
...
...
@@ -756,7 +756,7 @@ received data, and close the connection::
The :ref:`TCP echo server using streams <asyncio-tcp-echo-server-streams>`
example uses the high-level :func:`asyncio.start_server` function.
.. _asyncio
-tcp-echo-client-
protocol:
.. _asyncio
_example_tcp_echo_client_
protocol:
TCP Echo Client
---------------
...
...
@@ -914,7 +914,7 @@ method, sends data and closes the transport when it receives the answer::
asyncio.run(main())
.. _asyncio
-register-socket
:
.. _asyncio
_example_create_connection
:
Connecting Existing Sockets
---------------------------
...
...
@@ -973,14 +973,14 @@ Wait until a socket receives data using the
.. seealso::
The :ref:`watch a file descriptor for read events
<asyncio
-watch-read-event
>` example uses the low-level
<asyncio
_example_watch_fd
>` example uses the low-level
:meth:`loop.add_reader` method to register an FD.
The :ref:`register an open socket to wait for data using streams
<asyncio
-register-socket
-streams>` example uses high-level streams
<asyncio
_example_create_connection
-streams>` example uses high-level streams
created by the :func:`open_connection` function in a coroutine.
.. _asyncio
-subprocess-proto-example
:
.. _asyncio
_example_subprocess_proto
:
loop.subprocess_exec() and SubprocessProtocol
---------------------------------------------
...
...
@@ -1037,3 +1037,6 @@ The subprocess is created by th :meth:`loop.subprocess_exec` method::
date = asyncio.run(get_date())
print(f"Current date: {date}")
See also the :ref:`same example <asyncio_example_create_subprocess_exec>`
written using high-level APIs.
Doc/library/asyncio-stream.rst
View file @
394374e3
...
...
@@ -348,7 +348,7 @@ TCP echo client using the :func:`asyncio.open_connection` function::
.. seealso::
The :ref:`TCP echo client protocol <asyncio
-tcp-echo-client-
protocol>`
The :ref:`TCP echo client protocol <asyncio
_example_tcp_echo_client_
protocol>`
example uses the low-level :meth:`loop.create_connection` method.
...
...
@@ -390,7 +390,7 @@ TCP echo server using the :func:`asyncio.start_server` function::
.. seealso::
The :ref:`TCP echo server protocol <asyncio
-tcp-echo-server-
protocol>`
The :ref:`TCP echo server protocol <asyncio
_example_tcp_echo_server_
protocol>`
example uses the :meth:`loop.create_server` method.
...
...
@@ -444,7 +444,7 @@ or with HTTPS::
python example.py https://example.com/path/page.html
.. _asyncio
-register-socket
-streams:
.. _asyncio
_example_create_connection
-streams:
Register an open socket to wait for data using streams
------------------------------------------------------
...
...
@@ -484,9 +484,9 @@ Coroutine waiting until a socket receives data using the
.. seealso::
The :ref:`register an open socket to wait for data using a protocol
<asyncio
-register-socket
>` example uses a low-level protocol and
<asyncio
_example_create_connection
>` example uses a low-level protocol and
the :meth:`loop.create_connection` method.
The :ref:`watch a file descriptor for read events
<asyncio
-watch-read-event
>` example uses the low-level
<asyncio
_example_watch_fd
>` example uses the low-level
:meth:`loop.add_reader` method to watch a file descriptor.
Doc/library/asyncio-subprocess.rst
View file @
394374e3
...
...
@@ -318,6 +318,8 @@ An example using the :class:`~asyncio.subprocess.Process` class to
control a subprocess and the :class:`StreamReader` class to read from
the *stdout*.
.. _asyncio_example_create_subprocess_exec:
The subprocess is created by the :func:`create_subprocess_exec`
function::
...
...
@@ -349,5 +351,5 @@ function::
print(f"Current date: {date}")
See also the :ref:`same example <asyncio
-subprocess-proto-example
>`
See also the :ref:`same example <asyncio
_example_subprocess_proto
>`
written using low-level APIs.
Doc/library/asyncio-task.rst
View file @
394374e3
...
...
@@ -130,7 +130,7 @@ Running an asyncio Program
programs, and should ideally only be called once.
.. versionadded:: 3.7
**Important:** this has been
been
added to asyncio in Python 3.7
**Important:** this has been added to asyncio in Python 3.7
on a :term:`provisional basis <provisional api>`.
...
...
@@ -188,7 +188,7 @@ Sleeping
Running Tasks Concurrently
==========================
..
coroutine
function:: gather(\*fs, loop=None, return_exceptions=False)
.. function:: gather(\*fs, loop=None, return_exceptions=False)
Return a Future aggregating results from the given coroutine objects,
Tasks, or Futures.
...
...
Doc/library/asyncio.rst
View file @
394374e3
...
...
@@ -43,12 +43,13 @@ as well as **low-level** APIs for *library and framework developers* to:
with async/await syntax.
Reference
---------
.. We use the "rubric" directive here to avoid creating
the "Reference" subsection in the TOC.
.. rubric::
High-level APIs
.. rubric::
Reference
.. toctree::
:caption: High-level APIs
:maxdepth: 1
asyncio-task.rst
...
...
@@ -58,9 +59,8 @@ Reference
asyncio-queue.rst
asyncio-exceptions.rst
.. rubric:: Low-level APIs
.. toctree::
:caption: Low-level APIs
:maxdepth: 1
asyncio-eventloop.rst
...
...
@@ -69,10 +69,10 @@ Reference
asyncio-policy.rst
asyncio-platforms.rst
.. rubric:: Guides and Tutorials
.. toctree::
:caption: Guides and Tutorials
:maxdepth: 1
asyncio-api-index.rst
asyncio-llapi-index.rst
asyncio-dev.rst
Doc/tools/templates/layout.html
View file @
394374e3
...
...
@@ -21,5 +21,14 @@
{% if pagename == 'whatsnew/changelog' and not embedded %}
<script
type=
"text/javascript"
src=
"{{ pathto('_static/changelog_search.js', 1) }}"
></script>
{% endif %}
{% endif %}
{# custom CSS; used in asyncio docs! #}
<style>
@media
only
screen
{{
"{"
}}
table
.full-width-table
{
{
"{"
}
}
width
:
100
%;
{
{
"
}
" }}
{{ "
}"
}}
</style>
{{ super() }}
{% endblock %}
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