From b6cbb8736518ebb795ee5124ee5acdec69be2aa3 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Mon, 30 Sep 2024 21:23:52 -0700 Subject: [PATCH] reword comment --- Python/codegen.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Python/codegen.c b/Python/codegen.c index 002d1ff5006820..db4825c17f689b 100644 --- a/Python/codegen.c +++ b/Python/codegen.c @@ -678,10 +678,9 @@ codegen_leave_annotations_scope(compiler *c, location loc, // We want the parameter to __annotate__ to be named "format" in the // signature shown by inspect.signature(), but we need to use a - // different name (.format) in the symtable so that if the name - // "format" appears in the annotations, it does not get clobbered - // by this name. - // This code is essentially: + // different name (.format) in the symtable; if the name + // "format" appears in the annotations, it doesn't get clobbered + // by this name. This code is essentially: // co->co_localsplusnames = ("format", *co->co_localsplusnames[1:]) const Py_ssize_t size = PyObject_Size(co->co_localsplusnames); if (size == -1) {