Staging
v0.5.1
https://github.com/python/cpython
Revision 9636e462d825a9d2980474e1d57e88efd19111f7 authored by Barry Warsaw on 17 March 2012, 22:34:05 UTC, committed by Barry Warsaw on 17 March 2012, 22:34:05 UTC
1 parent b1abc08
Raw File
Tip revision: 9636e462d825a9d2980474e1d57e88efd19111f7 authored by Barry Warsaw on 17 March 2012, 22:34:05 UTC
Added tag v2.6.8rc2 for changeset bd9e1a02e3e3
Tip revision: 9636e46
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