diff options
author | Jacob Bower <1978924+jbower-fb@users.noreply.github.com> | 2024-11-21 23:26:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-21 23:26:25 (GMT) |
commit | 3fafc1bd83d1f2c19f124d234a0ece988dad8b0a (patch) | |
tree | 4cb87222a3b7629067a6a949a0f3c3a7461c6020 | |
parent | 78a530a57800264433d1874a41c91b0939156c03 (diff) | |
download | cpython-3fafc1bd83d1f2c19f124d234a0ece988dad8b0a.zip cpython-3fafc1bd83d1f2c19f124d234a0ece988dad8b0a.tar.gz cpython-3fafc1bd83d1f2c19f124d234a0ece988dad8b0a.tar.bz2 |
Improve comment for co_nlocalsplus (#126993)
-rw-r--r-- | Include/cpython/code.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/cpython/code.h b/Include/cpython/code.h index 370f1d2..3899d42 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 */ \ |