From 482e334dafb985433e5b904e8dc1ddcc41e44194 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 19 May 2022 01:59:49 -0700 Subject: [PATCH] Include ``asyncio.Barrier`` in 3.11 Whats New (GH-92927) (cherry picked from commit 60ee61571a60bcf4e40a4074e8db356b5af793c1) Co-authored-by: Duprat --- Doc/whatsnew/3.11.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 97dd096731f..0cbb0ba7721 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -431,6 +431,10 @@ asyncio existing stream-based connections to TLS. (Contributed by Ian Good in :issue:`34975`.) +* Add :class:`~asyncio.Barrier` class to the synchronization primitives of + the asyncio library. (Contributed by Yves Duprat and Andrew Svetlov in + :gh:`87518`.) + datetime --------