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