Skip to content

[3.7] bpo-32996: The bulk of What's New in Python 3.7 (GH-6978). #6998

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2018
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.


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 @@ -683,6 +683,8 @@ can be used to create instance variables with different implementation details.
:pep:`3129` - Class Decorators


.. _async:

Coroutines
==========

Expand Down
Loading