We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3309eb2 commit 49ca044Copy full SHA for 49ca044
Include/cpython/code.h
@@ -156,7 +156,7 @@ static inline Py_ssize_t PyCode_GetNumFree(PyCodeObject *op) {
156
return op->co_nfreevars;
157
}
158
159
-static inline Py_ssize_t PyCode_GetFirstFree(PyCodeObject *op) {
+static inline int PyCode_GetFirstFree(PyCodeObject *op) {
160
assert(PyCode_Check(op));
161
return op->co_nlocalsplus - op->co_nfreevars;
162
0 commit comments