8000 Fix links to builtin max, min in sys.float_info · python/cpython@078b226 · GitHub
[go: up one dir, main page]

Skip to content

Commit 078b226

Browse files
committed
Fix links to builtin max, min in sys.float_info
1 parent 64f5b1d commit 078b226

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/sys.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -545,15 +545,15 @@ always available.
545545
| :const:`mant_dig` | DBL_MANT_DIG | float precision: the number of base-``radix`` |
546546
| | | digits in the significand of a float |
547547
+---------------------+----------------+--------------------------------------------------+
548-
| :const:`max` | DBL_MAX | maximum representable positive finite float |
548+
| :const:`!max` | DBL_MAX | maximum representable positive finite float |
549549
+---------------------+----------------+--------------------------------------------------+
550550
| :const:`max_exp` | DBL_MAX_EXP | maximum integer *e* such that ``radix**(e-1)`` is|
551551
| | | a representable finite float |
552552
+---------------------+----------------+--------------------------------------------------+
553553
| :const:`max_10_exp` | DBL_MAX_10_EXP | maximum integer *e* such that ``10**e`` is in the|
554554
| | | range of representable finite floats |
555555
+---------------------+----------------+--------------------------------------------------+
556-
| :const:`min` | DBL_MIN | minimum representable positive *normalized* float|
556+
| :const:`!min` | DBL_MIN | minimum representable positive *normalized* float|
557557
| | | |
558558
| | | Use :func:`math.ulp(0.0) <math.ulp>` to get the |
559559
| | | smallest positive *denormalized* representable |

0 commit comments

Comments
 (0)
0