Skip to content

Commit 0a97ff7

Browse files
committed
address review: enabled -> true
1 parent 7901dbf commit 0a97ff7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/math.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ Constants
874874

875875
The :mod:`math` module consists mostly of thin wrappers around the platform C
876876
math library functions. Behavior in exceptional cases follows Annex F of
877-
the C99 standard, if :attr:`sys.float_info.stdc_iec_559` is enabled. The current implementation will raise
877+
the C99 standard, if :attr:`sys.float_info.stdc_iec_559` is true. The current implementation will raise
878878
:exc:`ValueError` for invalid operations like ``sqrt(-1.0)`` or ``log(0.0)``
879879
(where C99 Annex F recommends signaling invalid operation or divide-by-zero),
880880
and :exc:`OverflowError` for results that overflow (for example,

Doc/library/sys.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ always available. Unless explicitly noted otherwise, all variables are read-only
774774
* - .. attribute:: float_info.stdc_iec_559
775775
- :c:macro:`!__STDC_IEC_559__`
776776
- A boolean, indicating support the IEC 60559 floating-point
777-
standard (the Annex F of C99). If enabled, the
777+
standard (the Annex F of C99). If true, the
778778
:class:`float` type characteristics matches the IEC
779779
60559 double format and exceptional cases for
780780
the :mod:`math` functions follow to the section F.10

0 commit comments

Comments
 (0)