Staging
v0.8.1
https://github.com/python/cpython
Revision cb2969f88411e459ca1b6314fd9fa5f1cbf9f84e authored by Antoine Pitrou on 24 May 2009, 12:17:24 UTC, committed by Antoine Pitrou on 24 May 2009, 12:17:24 UTC
........
  r72882 | antoine.pitrou | 2009-05-24 14:15:04 +0200 (dim., 24 mai 2009) | 3 lines

  Fix build under Windows
........
1 parent 7852c42
Raw File
Tip revision: cb2969f88411e459ca1b6314fd9fa5f1cbf9f84e authored by Antoine Pitrou on 24 May 2009, 12:17:24 UTC
Blocked revisions 72882 via svnmerge
Tip revision: cb2969f
ast.h
#ifndef Py_AST_H
#define Py_AST_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
				  const char *, PyArena *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_AST_H */
back to top