Staging
v0.5.1
https://github.com/python/cpython
Revision f9b5b8e9f8f16a2cf829e864017496727af73949 authored by Andrew M. Kuchling on 16 August 2006, 14:21:14 UTC, committed by Andrew M. Kuchling on 16 August 2006, 14:21:14 UTC
1 parent 213e764
Raw File
Tip revision: f9b5b8e9f8f16a2cf829e864017496727af73949 authored by Andrew M. Kuchling on 16 August 2006, 14:21:14 UTC
Wording/typo fixes
Tip revision: f9b5b8e
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