-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.scm
More file actions
24 lines (24 loc) · 913 Bytes
/
template.scm
File metadata and controls
24 lines (24 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
void Py_Initialize ()
void Py_Finalize ()
PyObject* PyLong_FromLongLong (longlong)
PyObject* PyFloat_FromDouble (double)
PyObject* PyEval_GetBuiltins ()
PyObject* PyEval_EvalCode (PyObject* PyObject* PyObject*)
double PyFloat_AsDouble (PyObject*)
longlong PyLong_AsLongLong (PyObject*)
PyObject* Py_CompileString (char* char* int)
PyObject* PyDict_New ()
PyObject* PyDict_Copy (PyObject*)
int PyDict_SetItemString (PyObject* char* PyObject*)
PyObject* PyDict_GetItemString (PyObject* char*)
PyObject* PyDict_GetItem (PyObject* PyObject*)
int PyDict_DelItem (PyObject* PyObject*)
int PyDict_DelItemString (PyObject* char*)
void PyDict_Clear (PyObject*)
PyObject* PyTuple_New (longlong)
PyObject* PyTuple_GetItem (PyObject* longlong)
int PyTuple_SetItem (PyObject* longlong PyObject*)
void Py_INCREF (PyObject*)
void Py_DECREF (PyObject*)
PyObject* PyImport_AddModule (char*)
PyObject* PyModule_GetDict (PyObject*)