diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-04-05 16:38:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 16:38:10 (GMT) |
commit | 57f21db3f629649dbd7c4531078b6a2104896411 (patch) | |
tree | 7490505eba508f96686179f049515b8bc91ed9fa /Doc/library/pprint.rst | |
parent | b1dc1aacf8b0f319024a1a3ce91d395956537c11 (diff) | |
download | cpython-57f21db3f629649dbd7c4531078b6a2104896411.zip cpython-57f21db3f629649dbd7c4531078b6a2104896411.tar.gz cpython-57f21db3f629649dbd7c4531078b6a2104896411.tar.bz2 |
Fix the "make suspicious" check on the pprint docs (GH-25193)
Diffstat (limited to 'Doc/library/pprint.rst')
-rw-r--r-- | Doc/library/pprint.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst index b3b6ed5..756c33a 100644 --- a/Doc/library/pprint.rst +++ b/Doc/library/pprint.rst @@ -56,8 +56,8 @@ The :mod:`pprint` module defines one class: as will fit within the *width* will be formatted on each output line. If *sort_dicts* is true (the default), dictionaries will be formatted with their keys sorted, otherwise they will display in insertion order. If - *underscore_numbers* is true, integers will be formatted with - ```_``` character for a thousands separator, otherwise underscores are not + *underscore_numbers* is true, integers will be formatted with the + ``_`` character for a thousands separator, otherwise underscores are not displayed (the default). .. versionchanged:: 3.4 |