From: Jörn Heissler Date: Tue, 28 Sep 2021 10:25:15 +0000 (+0200) Subject: Fix typo in whatsnew: "ns" is 10^-9 secs and "us" is 10^-6 secs. (GH-28565) X-Git-Tag: v3.11.0a1~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=953e733e6d0bc02fde0e4f808259218a95a3b902;p=thirdparty%2FPython%2Fcpython.git Fix typo in whatsnew: "ns" is 10^-9 secs and "us" is 10^-6 secs. (GH-28565) --- diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 818208edbf26..7121bbe35310 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -243,8 +243,8 @@ time ---- * On Unix, :func:`time.sleep` now uses the ``clock_nanosleep()`` or - ``nanosleep()`` function, if available, which has a resolution of 1 ns (10^-6 - sec), rather than using ``select()`` which has a resolution of 1 us (10^-9 + ``nanosleep()`` function, if available, which has a resolution of 1 ns (10^-9 + sec), rather than using ``select()`` which has a resolution of 1 us (10^-6 sec). (Contributed by Livius and Victor Stinner in :issue:`21302`.)