2005-10-20 21:59:25 +02:00
|
|
|
#ifndef Py_AST_H
|
|
|
|
#define Py_AST_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-08-09 23:15:04 +02:00
|
|
|
PyAPI_FUNC(int) PyAST_Validate(mod_ty);
|
2010-12-27 02:49:31 +01:00
|
|
|
PyAPI_FUNC(mod_ty) PyAST_FromNode(
|
|
|
|
const node *n,
|
|
|
|
PyCompilerFlags *flags,
|
|
|
|
const char *filename, /* decoded from the filesystem encoding */
|
|
|
|
PyArena *arena);
|
2013-08-26 22:28:21 +02:00
|
|
|
PyAPI_FUNC(mod_ty) PyAST_FromNodeObject(
|
|
|
|
const node *n,
|
|
|
|
PyCompilerFlags *flags,
|
|
|
|
PyObject *filename,
|
|
|
|
PyArena *arena);
|
2005-10-20 21:59:25 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_AST_H */
|