Skip to content

Commit b1d30c3

Browse files
committed
address review: Py_HUGE_VAL & :term:soft deprecated
1 parent 54741ca commit b1d30c3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/c-api/float.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Floating-Point Objects
8787
``<math.h>`` header.
8888
8989
.. deprecated:: 3.15
90-
The macro is soft deprecated.
90+
The macro is :term:`soft deprecated`.
9191
9292
9393
.. c:macro:: Py_NAN
@@ -101,10 +101,10 @@ Floating-Point Objects
101101
102102
.. c:macro:: Py_HUGE_VAL
103103
104-
Same as :c:macro:`Py_INFINITY`.
104+
Equivalent to :c:macro:`Py_INFINITY`.
105105
106106
.. deprecated:: 3.14
107-
The macro is soft deprecated.
107+
The macro is :term:`soft deprecated`.
108108
109109
110110
.. c:macro:: Py_MATH_E
@@ -161,7 +161,7 @@ Floating-Point Objects
161161
normal, subnormal or zero, but not infinite or NaN.
162162
163163
.. deprecated:: 3.14
164-
The macro is soft deprecated. Use :c:macro:`!isfinite` instead.
164+
The macro is :term:`soft deprecated`. Use :c:macro:`!isfinite` instead.
165165
166166
167167
.. c:macro:: Py_IS_INFINITE
@@ -170,15 +170,15 @@ Floating-Point Objects
170170
infinity.
171171
172172
.. deprecated:: 3.14
173-
The macro is soft deprecated. Use :c:macro:`!isinf` instead.
173+
The macro is :term:`soft deprecated`. Use :c:macro:`!isinf` instead.
174174
175175
176176
.. c:macro:: Py_IS_NAN
177177
178178
Determines if the given floating-point number is a not-a-number (NaN) value.
179179
180180
.. deprecated:: 3.14
181-
The macro is soft deprecated. Use :c:macro:`!isnan` instead.
181+
The macro is :term:`soft deprecated`. Use :c:macro:`!isnan` instead.
182182
183183
184184
Pack and Unpack functions

0 commit comments

Comments
 (0)