|
ELinks 0.19.1
|
#include "scripting/python/pythoninc.h"#include <osdefs.h>#include <stdlib.h>#include "elinks.h"#include "config/home.h"#include "config/options.h"#include "config/opttypes.h"#include "main/main.h"#include "main/module.h"#include "scripting/python/core.h"#include "scripting/python/dialogs.h"#include "scripting/python/document.h"#include "scripting/python/keybinding.h"#include "scripting/python/load.h"#include "scripting/python/menu.h"#include "scripting/python/open.h"#include "scripting/python/python.h"#include "scripting/scripting.h"#include "session/session.h"#include "util/env.h"#include "util/string.h"
Functions | |
| void | alert_python_error (void) |
| static int | set_python_search_path (void) |
| static int | hooks_module_exists (void) |
| static PyCFunction * | python_showwarning (PyObject *self, PyObject *args, PyObject *kwargs) |
| static int | replace_showwarning (void) |
| static PyObject * | python_get_option (PyObject *self, PyObject *args) |
| static PyObject * | python_set_option (PyObject *self, PyObject *args) |
| static int | add_constant (PyObject *dict, const char *key, int value) |
| PyMODINIT_FUNC | PyInit_elinks (void) |
| void | init_python (struct module *module) |
| void | cleanup_python (struct module *module) |
| int | add_python_methods (PyObject *dict, PyObject *name, PyMethodDef *methods) |
Variables | |
| struct session * | python_ses = NULL |
| PyObject * | python_elinks_err = NULL |
| PyObject * | python_hooks = NULL |
| static char | python_showwarnings_doc [] |
| static PyMethodDef | warning_methods [] |
| char | python_get_option_doc [] |
| char | python_set_option_doc [] |
| static char | module_doc [] |
| static PyMethodDef | python_methods [] |
| static struct PyModuleDef | moduledef |
|
static |
| int add_python_methods | ( | PyObject * | dict, |
| PyObject * | name, | ||
| PyMethodDef * | methods ) |
| void alert_python_error | ( | void | ) |
| void cleanup_python | ( | struct module * | module | ) |
|
static |
| void init_python | ( | struct module * | module | ) |
| PyMODINIT_FUNC PyInit_elinks | ( | void | ) |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
| PyObject* python_elinks_err = NULL |
| char python_get_option_doc[] |
| PyObject* python_hooks = NULL |
|
static |
| char python_set_option_doc[] |
|
static |
|
static |