ast.h 243 B

12345678910111213
  1. #ifndef Py_AST_H
  2. #define Py_AST_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
  7. const char *, PyArena *);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif /* !Py_AST_H */