1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Add python_init_prof()

This commit is contained in:
James Booth 2016-07-18 23:24:26 +01:00
parent 269b8ce832
commit 71ccfcc09f
3 changed files with 16 additions and 13 deletions

View File

@ -872,6 +872,20 @@ python_api_init(void)
#endif
}
void
python_init_prof(void)
{
#if PY_MAJOR_VERSION >= 3
PyImport_AppendInittab("prof", python_api_init);
Py_Initialize();
PyEval_InitThreads();
#else
Py_Initialize();
PyEval_InitThreads();
python_api_init();
#endif
}
static char*
_python_plugin_name(void)
{

View File

@ -35,10 +35,8 @@
#ifndef PYTHON_API_H
#define PYTHON_API_H
#include <Python.h>
void python_env_init(void);
PyMODINIT_FUNC python_api_init(void);
void python_init_prof(void);
void python_shutdown(void);
void python_command_callback(PluginCommand *command, gchar **args);

View File

@ -68,18 +68,9 @@ _unref_module(PyObject *module)
void
python_env_init(void)
{
loaded_modules = g_hash_table_new_full(g_str_hash, g_str_equal, free, (GDestroyNotify)_unref_module);
#if PY_MAJOR_VERSION >= 3
PyImport_AppendInittab("prof", python_api_init);
Py_Initialize();
PyEval_InitThreads();
#else
Py_Initialize();
PyEval_InitThreads();
python_api_init();
#endif
python_init_prof();
const char *ver = Py_GetVersion();
cons_show("PYTHON: %s", ver);