Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/asyncio-task.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Coroutines (and tasks) can only run when the event loop is running.
used in a callback-style code, wrap its result with :func:`ensure_future`.


.. function:: asyncio.run(coro, \*, debug=False)
.. function:: run(coro, \*, debug=False)

This function runs the passed coroutine, taking care of
managing the asyncio event loop and finalizing asynchronous
Expand Down
3 changes: 0 additions & 3 deletions Doc/library/ensurepip.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,6 @@ options:

Providing both of the script selection options will trigger an exception.

.. versionchanged:: 3.7.0
The exit status is non-zero if the command fails.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, this was backported to 3.6 and 2.7.


Module API
----------
Expand Down
2 changes: 2 additions & 0 deletions Doc/reference/compound_stmts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,8 @@ can be used to create instance variables with different implementation details.
:pep:`3129` - Class Decorators


.. _async:

Coroutines
==========

Expand Down
Loading