Remove dead code from a previous version of this block.

Fixes #282
This commit is contained in:
Michael Hansen
2022-09-30 10:07:44 -07:00
parent 1b59ea5cd8
commit 4951905f83

View File

@@ -3170,11 +3170,6 @@ void print_src(PycRef<ASTNode> 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());
}