[Python-checkins] Fix typo in whatsnew: "ns" is 10^-9 secs and "us" is 10^-6 secs. (GH-28565)

serhiy-storchaka webhook-mailer at python.org
Tue Sep 28 06:25:20 EDT 2021


https://github.com/python/cpython/commit/953e733e6d0bc02fde0e4f808259218a95a3b902
commit: 953e733e6d0bc02fde0e4f808259218a95a3b902
branch: main
author: Jörn Heissler <joernheissler at users.noreply.github.com>
committer: serhiy-storchaka <storchaka at gmail.com>
date: 2021-09-28T13:25:15+03:00
summary:

Fix typo in whatsnew: "ns" is 10^-9 secs and "us" is 10^-6 secs. (GH-28565)

files:
M Doc/whatsnew/3.11.rst

diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 818208edbf263..7121bbe35310d 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`.)
 



More information about the Python-checkins mailing list