]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Improve comment for co_nlocalsplus (#126993)
authorJacob Bower <1978924+jbower-fb@users.noreply.github.com>
Thu, 21 Nov 2024 23:26:25 +0000 (15:26 -0800)
committerGitHub <noreply@github.com>
Thu, 21 Nov 2024 23:26:25 +0000 (17:26 -0600)
Include/cpython/code.h

index 370f1d259abe0f279f3baa3c36d85eaf22229b1d..3899d4269233a12d3f7a84e3518a99b50a79bc5e 100644 (file)
@@ -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 */         \