2019-09-12 06:27:14 -03:00
|
|
|
#ifndef Py_LIMITED_API
|
2005-10-20 16:59:25 -03:00
|
|
|
#ifndef Py_AST_H
|
|
|
|
#define Py_AST_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-11-11 19:56:19 -04:00
|
|
|
#include "Python-ast.h" /* mod_ty */
|
|
|
|
|
2011-08-09 18:15:04 -03:00
|
|
|
PyAPI_FUNC(int) PyAST_Validate(mod_ty);
|
2005-10-20 16:59:25 -03:00
|
|
|
|
2018-01-26 12:20:18 -04:00
|
|
|
/* _PyAST_ExprAsUnicode is defined in ast_unparse.c */
|
2018-05-17 00:17:48 -03:00
|
|
|
PyAPI_FUNC(PyObject *) _PyAST_ExprAsUnicode(expr_ty);
|
2018-01-26 12:20:18 -04:00
|
|
|
|
2018-05-30 04:56:16 -03:00
|
|
|
/* Return the borrowed reference to the first literal string in the
|
2019-07-30 19:16:13 -03:00
|
|
|
sequence of statements or NULL if it doesn't start from a literal string.
|
2018-05-30 04:56:16 -03:00
|
|
|
Doesn't set exception. */
|
|
|
|
PyAPI_FUNC(PyObject *) _PyAST_GetDocString(asdl_seq *);
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_AST_H */
|
2019-09-12 06:27:14 -03:00
|
|
|
#endif /* !Py_LIMITED_API */
|