[Python-checkins] Fix the "make suspicious" check on the pprint docs (GH-25193)

pablogsal webhook-mailer at python.org
Mon Apr 5 12:38:19 EDT 2021


https://github.com/python/cpython/commit/57f21db3f629649dbd7c4531078b6a2104896411
commit: 57f21db3f629649dbd7c4531078b6a2104896411
branch: master
author: Pablo Galindo <Pablogsal at gmail.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2021-04-05T17:38:10+01:00
summary:

Fix the "make suspicious" check on the pprint docs (GH-25193)

files:
M Doc/library/pprint.rst

diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst
index b3b6ed56a5e17..756c33a7a8668 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



More information about the Python-checkins mailing list