Staging
v0.8.1
https://github.com/python/cpython
Revision d88e5af061c4c3206699fe7b86e736c42fdeba1c authored by Georg Brandl on 13 August 2011, 09:54:33 UTC, committed by Georg Brandl on 13 August 2011, 09:54:33 UTC
2 parent s b3f0ce4 + 3abb372
Raw File
Tip revision: d88e5af061c4c3206699fe7b86e736c42fdeba1c authored by Georg Brandl on 13 August 2011, 09:54:33 UTC
Merge with cpython.
Tip revision: d88e5af
ast.h
#ifndef Py_AST_H
#define Py_AST_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(mod_ty) PyAST_FromNode(
    const node *n,
    PyCompilerFlags *flags,
    const char *filename,       /* decoded from the filesystem encoding */
    PyArena *arena);

#ifdef __cplusplus
}
#endif
#endif /* !Py_AST_H */
back to top