Staging
v0.5.1
https://github.com/python/cpython
Revision 817d91829f388a0302254c71792bb6b5382fd273 authored by Georg Brandl on 27 June 2010, 10:49:23 UTC, committed by Georg Brandl on 27 June 2010, 10:49:23 UTC
1 parent 565569b
Raw File
Tip revision: 817d91829f388a0302254c71792bb6b5382fd273 authored by Georg Brandl on 27 June 2010, 10:49:23 UTC
Use designated syntax for optional grammar element.
Tip revision: 817d918
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