Files
test2/source/blender/python/BPY_extern_python.h
Campbell Barton 14b03fca3c PyAPI: add bpy.app.python_args, use when calling Python from Blender
Expose arguments to use when creating a Python sub-process.

Python could fail to start when loaded in a customized environment,
with PYTHONPATH set for e.g. Blender ignores these and loads but a
Python sub-process attempts to use these environment variables which
may point to incompatible Python versions.

Resolve the root cause of #124731.
2024-07-31 11:59:23 +10:00

40 lines
830 B
C

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup python
*
* Functionality relating to Python setup & tear down.
*/
#pragma once
struct bContext;
#ifdef __cplusplus
extern "C" {
#endif
/* For 'FILE'. */
#include <stdio.h>
/* `bpy_interface.cc` */
/** Call #BPY_context_set first. */
void BPY_python_start(struct bContext *C, int argc, const char **argv);
void BPY_python_end(bool do_python_exit);
void BPY_python_reset(struct bContext *C);
void BPY_python_use_system_env(void);
bool BPY_python_use_system_env_get();
void BPY_python_backtrace(FILE *fp);
/* `bpy_app.cc` */
/* Access `main_args_help_as_string` needed to resolve bad level call. */
extern char *(*BPY_python_app_help_text_fn)(bool all);
#ifdef __cplusplus
} /* extern "C" */
#endif