From 4951905f8390c51f6a0786408fc4f0fdec6eb6ce Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Fri, 30 Sep 2022 10:07:44 -0700 Subject: [PATCH] Remove dead code from a previous version of this block. Fixes #282 --- ASTree.cpp | 5 ----- 1 file changed, 5 deletions(-) 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()); }