summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-09-22 14:03:00 (GMT)
committerGitHub <noreply@github.com>2023-09-22 14:03:00 (GMT)
commit284de30f50f0151005b589cf40ef53670a18bfc5 (patch)
treeb02912291b024f11675071720e1c6032b8d03dd5
parent8985a77bf6bd90ac31dfc4ce55770c08fc0ecdf6 (diff)
downloadcpython-284de30f50f0151005b589cf40ef53670a18bfc5.zip
cpython-284de30f50f0151005b589cf40ef53670a18bfc5.tar.gz
cpython-284de30f50f0151005b589cf40ef53670a18bfc5.tar.bz2
[3.12] GH-109190: Copyedit 3.12 What's New: asyncio (GH-109661) (#109733)
GH-109190: Copyedit 3.12 What's New: asyncio (GH-109661) (cherry picked from commit c32abf1f21c4bd32abcefe4d601611b152568961) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Ɓukasz Langa <lukasz@langa.pl> Co-authored-by: Itamar Oren <itamarost@gmail.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-rw-r--r--Doc/whatsnew/3.12.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index adbcdd0..1b3b0c2 100644
--- a/Doc/whatsnew/3.12.rst
+++ b/Doc/whatsnew/3.12.rst
@@ -569,7 +569,7 @@ asyncio
* Added :func:`asyncio.eager_task_factory` and :func:`asyncio.create_eager_task_factory`
functions to allow opting an event loop in to eager task execution,
making some use-cases 2x to 5x faster.
- (Contributed by Jacob Bower & Itamar O in :gh:`102853`, :gh:`104140`, and :gh:`104138`)
+ (Contributed by Jacob Bower & Itamar Oren in :gh:`102853`, :gh:`104140`, and :gh:`104138`)
* On Linux, :mod:`asyncio` uses :class:`asyncio.PidfdChildWatcher` by default
if :func:`os.pidfd_open` is available and functional instead of
@@ -596,7 +596,7 @@ asyncio
(Contributed by Kumar Aditya in :gh:`99388`.)
* Add C implementation of :func:`asyncio.current_task` for 4x-6x speedup.
- (Contributed by Itamar Ostricher and Pranav Thulasiram Bhat in :gh:`100344`.)
+ (Contributed by Itamar Oren and Pranav Thulasiram Bhat in :gh:`100344`.)
* :func:`asyncio.iscoroutine` now returns ``False`` for generators as
:mod:`asyncio` does not support legacy generator-based coroutines.
@@ -987,7 +987,7 @@ Optimizations
(Contributed by Serhiy Storchaka in :gh:`91524`.)
* Speed up :class:`asyncio.Task` creation by deferring expensive string formatting.
- (Contributed by Itamar O in :gh:`103793`.)
+ (Contributed by Itamar Oren in :gh:`103793`.)
* The :func:`tokenize.tokenize` and :func:`tokenize.generate_tokens` functions are
up to 64% faster as a side effect of the changes required to cover :pep:`701` in
@@ -1841,7 +1841,7 @@ New Features
* Added :c:func:`PyCode_AddWatcher` and :c:func:`PyCode_ClearWatcher`
APIs to register callbacks to receive notification on creation and
destruction of code objects.
- (Contributed by Itamar Ostricher in :gh:`91054`.)
+ (Contributed by Itamar Oren in :gh:`91054`.)
* Add :c:func:`PyFrame_GetVar` and :c:func:`PyFrame_GetVarString` functions to
get a frame variable by its name.