diff options
Diffstat (limited to 'Include')
-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 */ \ |