From b95c727b3e15d64edb69335541782f8b0761592a Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Wed, 3 Mar 2021 12:22:59 +0900 Subject: [PATCH] PEP 597: Fix rest format. (#1858) --- pep-0597.rst | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pep-0597.rst b/pep-0597.rst index a6166f822..c113e796f 100644 --- a/pep-0597.rst +++ b/pep-0597.rst @@ -277,23 +277,23 @@ https://mail.python.org/archives/list/python-dev@python.org/thread/SFYUP2TWD5JZ5 * Why not implement this in linters? - * ``encoding="locale"`` and ``io.text_encoding()`` must be in - Python. + * ``encoding="locale"`` and ``io.text_encoding()`` must be in + Python. - * It is difficult to find all caller of functions wrapping - ``open()`` or ``TextIOWrapper()``. (See ``io.text_encoding()`` - section.) + * It is difficult to find all caller of functions wrapping + ``open()`` or ``TextIOWrapper()``. (See ``io.text_encoding()`` + section.) * Many developers will not use the option. - * Some developers use the option and report the warnings to - libraries they use. So the option is worth enough even though - many developers won't use it. + * Some developers use the option and report the warnings to + libraries they use. So the option is worth enough even though + many developers won't use it. - * For example, I find [7]_ and [8]_ by running - ``pip install -U pip`` and find [9]_ by running ``tox`` - with the reference implementation. It demonstrates how this - option can be used to find potential issues. + * For example, I find [7]_ and [8]_ by running + ``pip install -U pip`` and find [9]_ by running ``tox`` + with the reference implementation. It demonstrates how this + option can be used to find potential issues. References