From b7162ce2eb239cb9e9f4152440951e3aade411d3 Mon Sep 17 00:00:00 2001 From: Anthony Alba Date: Thu, 9 Jun 2022 21:24:44 +0800 Subject: [PATCH] app_python3: workaround for abort in Python 3.8+ - GH #3125 (cherry picked from commit 73db408a4a) --- src/modules/app_python3/app_python3_mod.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/app_python3/app_python3_mod.c b/src/modules/app_python3/app_python3_mod.c index f710694d755..eb46f54f505 100644 --- a/src/modules/app_python3/app_python3_mod.c +++ b/src/modules/app_python3/app_python3_mod.c @@ -200,7 +200,10 @@ static int child_init(int rank) * processes */ #if PY_VERSION_HEX >= 0x03070000 + /* this is causing abort on Python 3.8+ GH#3125 + * skip for now PyOS_AfterFork_Parent() ; + */ #endif return 0; }