summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 056dacf..c97938a 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -7192,6 +7192,7 @@ compute_localsplus_info(struct compiler *c,
PyObject *names, _PyLocalsPlusKinds kinds)
{
int nlocalsplus = (int)PyTuple_GET_SIZE(names);
+ (void)nlocalsplus; // Avoid compiler errors for unused variable
PyObject *k, *v;
Py_ssize_t pos = 0;