diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-05 22:22:48 +0200 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-05 22:22:48 +0200 |
commit | 689b91b5ef549a0e409ce035ee7fda9e8889203b (patch) | |
tree | 17d8bae8f6e0a3a2c945a8e2c981bccfbd1993c2 | |
parent | 729f231a6a7b3b269f54c2fed0c0a097e9add73d (diff) | |
download | cpython-689b91b5ef549a0e409ce035ee7fda9e8889203b.tar.gz |
Fix typo noticed by Tom Lynn.
-rw-r--r-- | Doc/library/time.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst index bad3f47685..d7d82309a5 100644 --- a/Doc/library/time.rst +++ b/Doc/library/time.rst @@ -309,7 +309,7 @@ The module defines the following functions and data items: On Windows versions older than Vista, :func:`monotonic` detects :c:func:`GetTickCount` integer overflow (32 bits, roll-over after 49.7 days). - It increases an internal epoch (reference time by) 2\ :sup:`32` each time + It increases an internal epoch (reference time) by 2\ :sup:`32` each time that an overflow is detected. The epoch is stored in the process-local state and so the value of :func:`monotonic` may be different in two Python processes running for more than 49 days. On more recent versions of Windows |