2001-02-02 14:24:26 -04:00
|
|
|
#include "Python.h"
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
#include "code.h"
|
2001-02-02 14:24:26 -04:00
|
|
|
#include "compile.h"
|
2005-10-20 16:59:25 -03:00
|
|
|
#include "Python-ast.h"
|
2001-02-02 14:24:26 -04:00
|
|
|
#include "symtable.h"
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
symtable_symtable(PyObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
struct symtable *st;
|
|
|
|
PyObject *t;
|
|
|
|
|
|
|
|
char *str;
|
|
|
|
char *filename;
|
|
|
|
char *startstr;
|
|
|
|
int start;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "sss:symtable", &str, &filename,
|
|
|
|
&startstr))
|
|
|
|
return NULL;
|
|
|
|
if (strcmp(startstr, "exec") == 0)
|
|
|
|
start = Py_file_input;
|
|
|
|
else if (strcmp(startstr, "eval") == 0)
|
|
|
|
start = Py_eval_input;
|
|
|
|
else if (strcmp(startstr, "single") == 0)
|
|
|
|
start = Py_single_input;
|
|
|
|
else {
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"symtable() arg 3 must be 'exec' or 'eval' or 'single'");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
st = Py_SymtableString(str, filename, start);
|
|
|
|
if (st == NULL)
|
|
|
|
return NULL;
|
2003-10-12 16:09:37 -03:00
|
|
|
t = st->st_symbols;
|
|
|
|
Py_INCREF(t);
|
2001-12-06 10:34:58 -04:00
|
|
|
PyMem_Free((void *)st->st_future);
|
2001-02-02 14:24:26 -04:00
|
|
|
PySymtable_Free(st);
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyMethodDef symtable_methods[] = {
|
|
|
|
{"symtable", symtable_symtable, METH_VARARGS,
|
2002-08-13 19:20:41 -03:00
|
|
|
PyDoc_STR("Return symbol and scope dictionaries"
|
|
|
|
" used internally by compiler.")},
|
2001-02-02 14:24:26 -04:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
2002-08-01 23:27:13 -03:00
|
|
|
PyMODINIT_FUNC
|
2001-02-02 14:24:26 -04:00
|
|
|
init_symtable(void)
|
|
|
|
{
|
|
|
|
PyObject *m;
|
|
|
|
|
|
|
|
m = Py_InitModule("_symtable", symtable_methods);
|
2006-01-19 02:09:39 -04:00
|
|
|
if (m == NULL)
|
|
|
|
return;
|
2001-02-02 14:24:26 -04:00
|
|
|
PyModule_AddIntConstant(m, "USE", USE);
|
|
|
|
PyModule_AddIntConstant(m, "DEF_GLOBAL", DEF_GLOBAL);
|
|
|
|
PyModule_AddIntConstant(m, "DEF_LOCAL", DEF_LOCAL);
|
|
|
|
PyModule_AddIntConstant(m, "DEF_PARAM", DEF_PARAM);
|
|
|
|
PyModule_AddIntConstant(m, "DEF_FREE", DEF_FREE);
|
|
|
|
PyModule_AddIntConstant(m, "DEF_FREE_CLASS", DEF_FREE_CLASS);
|
|
|
|
PyModule_AddIntConstant(m, "DEF_IMPORT", DEF_IMPORT);
|
2001-03-22 19:10:44 -04:00
|
|
|
PyModule_AddIntConstant(m, "DEF_BOUND", DEF_BOUND);
|
2001-02-02 14:24:26 -04:00
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
PyModule_AddIntConstant(m, "TYPE_FUNCTION", FunctionBlock);
|
|
|
|
PyModule_AddIntConstant(m, "TYPE_CLASS", ClassBlock);
|
|
|
|
PyModule_AddIntConstant(m, "TYPE_MODULE", ModuleBlock);
|
2001-02-02 14:24:26 -04:00
|
|
|
|
2001-04-16 15:42:13 -03:00
|
|
|
PyModule_AddIntConstant(m, "OPT_IMPORT_STAR", OPT_IMPORT_STAR);
|
|
|
|
PyModule_AddIntConstant(m, "OPT_EXEC", OPT_EXEC);
|
|
|
|
PyModule_AddIntConstant(m, "OPT_BARE_EXEC", OPT_BARE_EXEC);
|
|
|
|
|
2001-02-02 14:24:26 -04:00
|
|
|
PyModule_AddIntConstant(m, "LOCAL", LOCAL);
|
|
|
|
PyModule_AddIntConstant(m, "GLOBAL_EXPLICIT", GLOBAL_EXPLICIT);
|
|
|
|
PyModule_AddIntConstant(m, "GLOBAL_IMPLICIT", GLOBAL_IMPLICIT);
|
|
|
|
PyModule_AddIntConstant(m, "FREE", FREE);
|
|
|
|
PyModule_AddIntConstant(m, "CELL", CELL);
|
2008-08-17 14:13:26 -03:00
|
|
|
|
|
|
|
PyModule_AddIntConstant(m, "SCOPE_OFF", SCOPE_OFF);
|
|
|
|
PyModule_AddIntConstant(m, "SCOPE_MASK", SCOPE_MASK);
|
2001-02-02 14:24:26 -04:00
|
|
|
}
|