Staging
v0.5.1
https://github.com/python/cpython
Revision 0cc818f0a3f6505866289de5185fa01f6eb75e6f authored by Raymond Hettinger on 21 November 2008, 10:40:51 UTC, committed by Raymond Hettinger on 21 November 2008, 10:40:51 UTC
1 parent 29bb6d5
Raw File
Tip revision: 0cc818f0a3f6505866289de5185fa01f6eb75e6f authored by Raymond Hettinger on 21 November 2008, 10:40:51 UTC
Fix minor typos.
Tip revision: 0cc818f
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