[Python-checkins] bpo-37602: Clarify that the lib2to3 nonzero fixer changes only definitions (GH-30075)

iritkatriel webhook-mailer at python.org
Mon Dec 13 05:04:40 EST 2021


https://github.com/python/cpython/commit/481f3ffdbe40bd19677a1ba0ac2e7cece8949b47
commit: 481f3ffdbe40bd19677a1ba0ac2e7cece8949b47
branch: main
author: Irit Katriel <1055913+iritkatriel at users.noreply.github.com>
committer: iritkatriel <1055913+iritkatriel at users.noreply.github.com>
date: 2021-12-13T10:04:34Z
summary:

bpo-37602: Clarify that the lib2to3 nonzero fixer changes only definitions (GH-30075)

files:
M Doc/library/2to3.rst

diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst
index 9a1644a97c0ae..fce02e2800933 100644
--- a/Doc/library/2to3.rst
+++ b/Doc/library/2to3.rst
@@ -338,7 +338,8 @@ and off individually.  They are described here in more detail.
 
 .. 2to3fixer:: nonzero
 
-   Renames :meth:`__nonzero__` to :meth:`~object.__bool__`.
+   Renames definitions of methods called :meth:`__nonzero__`
+   to :meth:`~object.__bool__`.
 
 .. 2to3fixer:: numliterals
 



More information about the Python-checkins mailing list