From d1f6353da2b7de77ee9bc2dec0241fe52b8e23c8 Mon Sep 17 00:00:00 2001 From: ebonnal Date: Thu, 13 Mar 2025 22:00:49 +0000 Subject: [PATCH] 3.14.rst: move the gh-74028 resolution in the right section `concurrent.futures` --- Doc/whatsnew/3.14.rst | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 8f58901b28e1b0..65ab57eb821c6c 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -459,12 +459,6 @@ concurrent.futures ways to terminate or kill all living worker processes in the given pool. (Contributed by Charles Machalow in :gh:`130849`.) -contextvars ------------ - -* Support context manager protocol by :class:`contextvars.Token`. - (Contributed by Andrew Svetlov in :gh:`129889`.) - * Add the optional ``buffersize`` parameter to :meth:`concurrent.futures.Executor.map` to limit the number of submitted tasks whose results have not yet been yielded. If the buffer is full, @@ -473,6 +467,13 @@ contextvars (Contributed by Enzo Bonnal and Josh Rosenberg in :gh:`74028`.) +contextvars +----------- + +* Support context manager protocol by :class:`contextvars.Token`. + (Contributed by Andrew Svetlov in :gh:`129889`.) + + ctypes ------