diff --git a/ASTree.cpp b/ASTree.cpp index b11c1da..2b63335 100644 --- a/ASTree.cpp +++ b/ASTree.cpp @@ -3170,11 +3170,6 @@ void print_src(PycRef node, PycModule* mod) if (code_src->flags() & PycCode::CO_VARKEYWORDS) { if (narg) fputs(", ", pyc_output); - - int idx = code_src->argCount(); - if (code_src->flags() & PycCode::CO_VARARGS) { - idx++; - } fprintf(pyc_output, "**%s", code_src->getVarName(narg++)->value()); }