In most (cases functions returning a PyObject pointer requires it to be used by the caller, declare functions in the Python API with the `nodiscard` attribute.
32 lines
739 B
C++
32 lines
739 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;
|
|
|
|
/* For 'FILE'. */
|
|
#include <cstdio>
|
|
|
|
/* `bpy_interface.cc` */
|
|
|
|
/** Call #BPY_context_set first. */
|
|
void BPY_python_start(bContext *C, int argc, const char **argv);
|
|
void BPY_python_end(bool do_python_exit);
|
|
void BPY_python_reset(bContext *C);
|
|
void BPY_python_use_system_env();
|
|
[[nodiscard]] 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);
|