summaryrefslogtreecommitdiff
path: root/Include/cpython/code.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/cpython/code.h')
-rw-r--r--Include/cpython/code.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cpython/code.h b/Include/cpython/code.h
index 990f36787c..5c0fae47e7 100644
--- a/Include/cpython/code.h
+++ b/Include/cpython/code.h
@@ -64,7 +64,7 @@ struct PyCodeObject {
/* These fields are set with computed values on new code objects. */
- Py_ssize_t *co_cell2arg; /* Maps cell vars which are arguments. */
+ int *co_cell2arg; /* Maps cell vars which are arguments. */
// These are redundant but offer some performance benefit.
int co_nlocalsplus; /* number of local + cell + free variables */
int co_nlocals; /* number of local variables */