From abf86a136638d4340fc50911c84c299133b0b62e Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Sat, 29 Apr 2023 00:42:07 -0700 Subject: [PATCH] [3.11] Fix description of MAKE_CELL Backport of part of #103923 --- Doc/library/dis.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index a61dd75cbeab67..7915be81f1f463 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