Staging
v0.5.1
https://github.com/python/cpython
Revision 2593eac34e45d9f6160419ec50dbbe4452bca1fb authored by Barry Warsaw on 23 February 2012, 15:59:50 UTC, committed by Barry Warsaw on 23 February 2012, 15:59:50 UTC
1 parent 74f4bd5
Raw File
Tip revision: 2593eac34e45d9f6160419ec50dbbe4452bca1fb authored by Barry Warsaw on 23 February 2012, 15:59:50 UTC
Added tag v2.6.8rc1 for changeset caab08cd2b3e
Tip revision: 2593eac
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