Staging
v0.8.1
https://github.com/python/cpython
Revision d20046622a3e5c687d03913e0632ca1ed690e1b6 authored by Georg Brandl on 16 March 2007, 08:33:51 UTC, committed by Georg Brandl on 16 March 2007, 08:33:51 UTC
1 parent 7d9ac78
Raw File
Tip revision: d20046622a3e5c687d03913e0632ca1ed690e1b6 authored by Georg Brandl on 16 March 2007, 08:33:51 UTC
RFE #1670167: fix in isinstance() docs.
Tip revision: d200466
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