Staging
v0.5.1
https://github.com/python/cpython
Revision d7cde5daff104a26eebc4d5d6d4319e51772d399 authored by Eli Bendersky on 31 January 2011, 04:05:52 UTC, committed by Eli Bendersky on 31 January 2011, 04:05:52 UTC
1 parent ffaa692
Raw File
Tip revision: d7cde5daff104a26eebc4d5d6d4319e51772d399 authored by Eli Bendersky on 31 January 2011, 04:05:52 UTC
Fix some grammar and typos
Tip revision: d7cde5d
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