diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-08-17 09:07:21 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-08-17 09:07:21 (GMT) |
commit | 717a32b75569b9f42792a8c515a5e463a9380e4a (patch) | |
tree | a4c208e7dbab3d0530306536f1777fffa873932b /Lib/test | |
parent | 8579a8fd630a0d34f90a0b4745518b362b2ea774 (diff) | |
download | cpython-717a32b75569b9f42792a8c515a5e463a9380e4a.zip cpython-717a32b75569b9f42792a8c515a5e463a9380e4a.tar.gz cpython-717a32b75569b9f42792a8c515a5e463a9380e4a.tar.bz2 |
Fix typo in test_time.py
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_time.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index f883c45..f224212 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -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)) |