From d88944b83248d34a61424fb31177416403791ae6 Mon Sep 17 00:00:00 2001 From: Lil-Ran Date: Thu, 6 Mar 2025 14:55:22 +0800 Subject: [PATCH] fix: py3.8 limited support --- ASTree.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ASTree.cpp b/ASTree.cpp index 952cbe4..9ac5ac7 100644 --- a/ASTree.cpp +++ b/ASTree.cpp @@ -2649,6 +2649,9 @@ PycRef BuildFromCode(PycRef code, PycModule* mod) as no-ops. */ break; case Pyc::PUSH_NULL: + // BEGIN ONESHOT TEMPORARY PATCH + case Pyc::BEGIN_FINALLY: + // END ONESHOT PATCH stack.push(nullptr); break; case Pyc::GEN_START_A: