summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_time.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_time.py')
-rw-r--r--Lib/test/test_time.py4
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