From: Jacob Bower <1978924+jbower-fb@users.noreply.github.com> Date: Thu, 21 Nov 2024 23:26:25 +0000 (-0800) Subject: Improve comment for co_nlocalsplus (#126993) X-Git-Tag: v3.14.0a3~257 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3fafc1bd83d1f2c19f124d234a0ece988dad8b0a;p=thirdparty%2FPython%2Fcpython.git Improve comment for co_nlocalsplus (#126993) --- diff --git a/Include/cpython/code.h b/Include/cpython/code.h index 370f1d259abe..3899d4269233 100644 --- a/Include/cpython/code.h +++ b/Include/cpython/code.h @@ -131,7 +131,8 @@ typedef struct { \ /* redundant values (derived from co_localsplusnames and \ co_localspluskinds) */ \ - int co_nlocalsplus; /* number of local + cell + free variables */ \ + int co_nlocalsplus; /* number of spaces for holding local, cell, \ + and free variables */ \ int co_framesize; /* Size of frame in words */ \ int co_nlocals; /* number of local variables */ \ int co_ncellvars; /* total number of cell variables */ \