Issue #15741: Fix potential NULL dereference. Found by Coverity.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index a07b78c..b4f0e24 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -523,6 +523,8 @@
             mod_ty mod;
 
             arena = PyArena_New();
+            if (arena == NULL)
+                return NULL;
             mod = PyAST_obj2mod(cmd, arena, mode);
             if (mod == NULL) {
                 PyArena_Free(arena);