]> granicus.if.org Git - python/commitdiff
Fix typo in test_time.py
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 17 Aug 2016 09:07:21 +0000 (11:07 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 17 Aug 2016 09:07:21 +0000 (11:07 +0200)
Lib/test/test_time.py

index f883c45d04d72da5bc2d80801c12ae029d413871..f2242126d1826d0764454fd3b85acfdf8a030788 100644 (file)
@@ -729,7 +729,7 @@ class CPyTimeTestCase:
         for seconds in (_testcapi.INT_MIN, _testcapi.INT_MAX):
             ns_timestamps.append(seconds * SEC_TO_NS)
         if use_float:
-            # numbers with an extract representation in IEEE 754 (base 2)
+            # numbers with an exact representation in IEEE 754 (base 2)
             for pow2 in (3, 7, 10, 15):
                 ns = 2.0 ** (-pow2)
                 ns_timestamps.extend((-ns, ns))