[Python-checkins] [3.11] Fix description of MAKE_CELL (#103986)

JelleZijlstra webhook-mailer at python.org
Sat Apr 29 09:12:53 EDT 2023


https://github.com/python/cpython/commit/86ef1ce1217eefbe005f61d76fa1f7a3aa01b74e
commit: 86ef1ce1217eefbe005f61d76fa1f7a3aa01b74e
branch: 3.11
author: Shantanu <12621235+hauntsaninja at users.noreply.github.com>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2023-04-29T06:12:46-07:00
summary:

[3.11] Fix description of MAKE_CELL (#103986)

Backport of part of #103923

files:
M Doc/library/dis.rst

diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index a61dd75cbeab..7915be81f1f4 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -1088,7 +1088,7 @@ iterations of the loop.
 
 .. opcode:: MAKE_CELL (i)
 
-   Creates a new cell in slot ``i``.  If that slot is empty then
+   Creates a new cell in slot ``i``.  If that slot is nonempty then
    that value is stored into the new cell.
 
    .. versionadded:: 3.11



More information about the Python-checkins mailing list