Staging
v0.5.1
https://github.com/python/cpython
Revision f722c2969aa767d4dd9d9e1d4b1b682c90bde611 authored by Benjamin Peterson on 30 June 2014, 01:57:11 UTC, committed by Benjamin Peterson on 30 June 2014, 01:57:11 UTC
1 parent bb4d352
Raw File
Tip revision: f722c2969aa767d4dd9d9e1d4b1b682c90bde611 authored by Benjamin Peterson on 30 June 2014, 01:57:11 UTC
update pydoc-topics
Tip revision: f722c29
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