Staging
v0.5.1
https://github.com/python/cpython
Revision 86f67123befc7f5fe76c97d7e08502846f04722d authored by Ezio Melotti on 13 February 2012, 12:11:27 UTC, committed by Ezio Melotti on 13 February 2012, 12:11:27 UTC
1 parent 5211ffe
Raw File
Tip revision: 86f67123befc7f5fe76c97d7e08502846f04722d authored by Ezio Melotti on 13 February 2012, 12:11:27 UTC
Fix htmlparser tests to always use the right collector.
Tip revision: 86f6712
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