Staging
v0.5.1
https://github.com/python/cpython
Revision 9b323a521c8612093ff1d23b25c4d9809601e1d6 authored by Ezio Melotti on 14 May 2011, 06:17:52 UTC, committed by Ezio Melotti on 14 May 2011, 06:17:52 UTC
1 parent 4dcb7be
Raw File
Tip revision: 9b323a521c8612093ff1d23b25c4d9809601e1d6 authored by Ezio Melotti on 14 May 2011, 06:17:52 UTC
#11979: improve wording and markup in sockets howto. Patch by Xavier Morel.
Tip revision: 9b323a5
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