summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorElvis Pranskevichus <elvis@magic.io>2018-05-20 03:15:06 (GMT)
committerYury Selivanov <yury@magic.io>2018-05-20 03:15:06 (GMT)
commit63536bd286097e770909052052a21804a5e09b66 (patch)
treefe233adb6cb63bac4c0bdc9811fd52cab12fc9f4 /Doc/library
parent6b0d09b8f06e6967fa3d41425cecf6499a353a6d (diff)
downloadcpython-63536bd286097e770909052052a21804a5e09b66.zip
cpython-63536bd286097e770909052052a21804a5e09b66.tar.gz
cpython-63536bd286097e770909052052a21804a5e09b66.tar.bz2
bpo-32996: The bulk of What's New in Python 3.7 (GH-6978)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/asyncio-task.rst2
-rw-r--r--Doc/library/ensurepip.rst3
2 files changed, 1 insertions, 4 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
index db0e04a..2488a90 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -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
diff --git a/Doc/library/ensurepip.rst b/Doc/library/ensurepip.rst
index ed22180..c797f63 100644
--- a/Doc/library/ensurepip.rst
+++ b/Doc/library/ensurepip.rst
@@ -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
----------