From 4b4f9f8edb628af178dabe69d372f2629684b2ae Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Thu, 8 Jun 2023 14:30:09 -0700 Subject: [PATCH] Fix impossible condition in pycdas Code dump --- pycdas.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycdas.cpp b/pycdas.cpp index f827ed5..bebf231 100644 --- a/pycdas.cpp +++ b/pycdas.cpp @@ -110,7 +110,7 @@ void output_object(PycRef obj, PycModule* mod, int indent, for (int i=0; inames()->size(); i++) output_object(codeObj->names()->get(i), mod, indent + 2, flags, pyc_output); - if (mod->verCompare(1, 3) >= 0 && mod->verCompare(3, 11) < 0) { + if (mod->verCompare(1, 3) >= 0) { if (mod->verCompare(3, 11) >= 0) iputs(pyc_output, indent + 1, "[Locals+Names]\n"); else