Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
230 B

  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 */