From: Benjamin Szőke Date: Sun, 17 Oct 2021 11:59:22 +0000 (+0200) Subject: Fix contributor person name in rst files (GH-29005) X-Git-Tag: v3.11.0a2~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a27f53bdd5b360fcfd94ca52e40f7c7e56597613;p=thirdparty%2FPython%2Fcpython.git Fix contributor person name in rst files (GH-29005) --- diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 9d7d3f19faae..c589139b1548 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -261,12 +261,12 @@ time ``nanosleep()`` function, if available, which has a resolution of 1 nanosecond (10\ :sup:`-9` seconds), rather than using ``select()`` which has a resolution of 1 microsecond (10\ :sup:`-6` seconds). - (Contributed by Livius and Victor Stinner in :issue:`21302`.) + (Contributed by Benjamin Szőke and Victor Stinner in :issue:`21302`.) * On Windows, :func:`time.sleep` now uses a waitable timer which has a resolution of 100 nanoseconds (10\ :sup:`-7` seconds). Previously, it had a resolution of 1 millisecond (10\ :sup:`-3` seconds). - (Contributed by Livius and Victor Stinner in :issue:`21302`.) + (Contributed by Benjamin Szőke and Victor Stinner in :issue:`21302`.) unicodedata ----------- diff --git a/Misc/NEWS.d/3.11.0a1.rst b/Misc/NEWS.d/3.11.0a1.rst index a64a3e74ccb4..28b81b75266f 100644 --- a/Misc/NEWS.d/3.11.0a1.rst +++ b/Misc/NEWS.d/3.11.0a1.rst @@ -1516,7 +1516,7 @@ available. ``nanosleep()`` allows to sleep with nanosecond precision. On Windows, :func:`time.sleep` now uses a waitable timer which has a resolution of 100 nanoseconds (10\ :sup:`-7` seconds). Previously, it had a -resolution of 1 millisecond (10\ :sup:`-3` seconds). Patch by Livius and +resolution of 1 millisecond (10\ :sup:`-3` seconds). Patch by Benjamin Szőke and Victor Stinner. ..