Skip to content

Commit e51a8e2

Browse files
committed
Fix the docs build.
1 parent 1378bde commit e51a8e2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Doc/library/stdtypes.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -5275,7 +5275,7 @@ The limit is applied to the number of digit characters in the input or output
52755275
string when a non-linear conversion algorithm would be involved. Underscores
52765276
and the sign are not counted towards the limit.
52775277

5278-
When an operation would exceed the limit, a :exc:`ValueError` is raised::
5278+
When an operation would exceed the limit, a :exc:`ValueError` is raised:
52795279

52805280
.. doctest::
52815281

@@ -5302,7 +5302,9 @@ The default limit is 4300 digits as provided in
53025302
The lowest limit that can be configured is 640 digits as provided in
53035303
:data:`sys.int_info.str_digits_check_threshold <sys.int_info>`.
53045304

5305-
Verification::
5305+
Verification:
5306+
5307+
.. doctest::
53065308

53075309
>>> import sys
53085310
>>> assert sys.int_info.default_max_str_digits == 4300, sys.int_info

0 commit comments

Comments
 (0)