ELinks 0.16.1.1
|
#include "scripting/python/pythoninc.h"
#include <osdefs.h>
#include <stdlib.h>
#include "elinks.h"
#include "config/home.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 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 [] |
static char | module_doc [] |
static PyMethodDef | python_methods [] |
static struct PyModuleDef | moduledef |
static wchar_t * | program_name |
static char | elpythonversion [32] |
|
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 |
PyObject* python_hooks = NULL |
|
static |
|
static |
|
static |