diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-11-12 14:57:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-12 14:57:03 (GMT) |
commit | 138ccbb02216ca086047c3139857fb44f3dab1f9 (patch) | |
tree | 650ba3584d4d173fe36d757063909a09f239ebf2 /Doc/whatsnew | |
parent | 9a13a388f202268dd7b771638adbec132449b98b (diff) | |
download | cpython-138ccbb02216ca086047c3139857fb44f3dab1f9.zip cpython-138ccbb02216ca086047c3139857fb44f3dab1f9.tar.gz cpython-138ccbb02216ca086047c3139857fb44f3dab1f9.tar.bz2 |
bpo-38738: Fix formatting of True and False. (GH-17083)
* "Return true/false" is replaced with "Return ``True``/``False``"
if the function actually returns a bool.
* Fixed formatting of some True and False literals (now in monospace).
* Replaced "True/False" with "true/false" if it can be not only bool.
* Replaced some 1/0 with True/False if it corresponds the code.
* "Returns <bool>" is replaced with "Return <bool>".
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 0890955..c71c1ab 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -924,7 +924,7 @@ logging ------- Added a *force* keyword argument to :func:`logging.basicConfig()` -When set to *True*, any existing handlers attached +When set to true, any existing handlers attached to the root logger are removed and closed before carrying out the configuration specified by the other arguments. @@ -1051,7 +1051,7 @@ environment variable and does not use :envvar:`HOME`, which is not normally set for regular user accounts. (Contributed by Anthony Sottile in :issue:`36264`.) -:func:`~os.path.isdir` on Windows no longer returns true for a link to a +:func:`~os.path.isdir` on Windows no longer returns ``True`` for a link to a non-existent directory. :func:`~os.path.realpath` on Windows now resolves reparse points, including @@ -1100,12 +1100,12 @@ pprint The :mod:`pprint` module added a *sort_dicts* parameter to several functions. By default, those functions continue to sort dictionaries before rendering or -printing. However, if *sort_dicts* is set to *False*, the dictionaries retain +printing. However, if *sort_dicts* is set to false, the dictionaries retain the order that keys were inserted. This can be useful for comparison to JSON inputs during debugging. In addition, there is a convenience new function, :func:`pprint.pp` that is -like :func:`pprint.pprint` but with *sort_dicts* defaulting to *False*:: +like :func:`pprint.pprint` but with *sort_dicts* defaulting to ``False``:: >>> from pprint import pprint, pp >>> d = dict(source='input.txt', operation='filter', destination='output.txt') |