Staging
v0.5.1
https://github.com/python/cpython
Revision 9bf51fefd011de3a439b7553e65a759c4469285d authored by Barry Warsaw on 01 October 2013, 00:37:45 UTC, committed by Barry Warsaw on 01 October 2013, 00:37:45 UTC
1 parent be1950d
Raw File
Tip revision: 9bf51fefd011de3a439b7553e65a759c4469285d authored by Barry Warsaw on 01 October 2013, 00:37:45 UTC
Bump copyright years.
Tip revision: 9bf51fe
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