Staging
v0.5.1
https://github.com/python/cpython
Revision cfba5f8c2e21916cdcc24630461e673c1cb4d883 authored by Neal Norwitz on 25 April 2006, 05:05:03 UTC, committed by Neal Norwitz on 25 April 2006, 05:05:03 UTC
1 parent 85c767a
Raw File
Tip revision: cfba5f8c2e21916cdcc24630461e673c1cb4d883 authored by Neal Norwitz on 25 April 2006, 05:05:03 UTC
Restore Walters name
Tip revision: cfba5f8
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