Staging
v0.5.1
Revision 311d071541ba1fd8615ecf604026e96d547c1d80 authored by Neal Norwitz on 27 March 2008, 05:02:57 UTC, committed by Neal Norwitz on 27 March 2008, 05:02:57 UTC
1 parent 231346e
Raw File
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