diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:03:53 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:03:53 (GMT) |
commit | ec1aa5c2a1d0848351dd9d7d2758c553f18e56b2 (patch) | |
tree | 3aecf6de51f63d93b5831d00413e4a1b0600fdd6 /Lib | |
parent | 3f930dcd8725078c1655f09ca9bea0889e999fd6 (diff) | |
download | cpython-ec1aa5c2a1d0848351dd9d7d2758c553f18e56b2.zip cpython-ec1aa5c2a1d0848351dd9d7d2758c553f18e56b2.tar.gz cpython-ec1aa5c2a1d0848351dd9d7d2758c553f18e56b2.tar.bz2 |
More typos in 3.5 documentation and comments
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_time.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index de0cbc4..76b894e 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -773,7 +773,7 @@ class TestPyTime_t(unittest.TestCase): (2**23 - 1e-9, 8388607999999999), (2**23, 8388608000000000), - # start loosing precision for value > 2^23 seconds + # start losing precision for value > 2^23 seconds (2**23 + 1e-9, 8388608000000002), # nanoseconds are lost for value > 2^23 seconds @@ -848,7 +848,7 @@ class TestPyTime_t(unittest.TestCase): (4194304000000000, 2**22), (4194304000000001, 2**22 + 1e-9), - # start loosing precision for value > 2^23 seconds + # start losing precision for value > 2^23 seconds (8388608000000002, 2**23 + 1e-9), # nanoseconds are lost for value > 2^23 seconds |