Staging
v0.5.1
https://github.com/python/cpython
Revision cac8f585b12e2598783b7c570108eaa8d2262c4c authored by Martin v. Löwis on 13 June 2008, 18:19:49 UTC, committed by Martin v. Löwis on 13 June 2008, 18:19:49 UTC
1 parent cc0f2b2
Raw File
Tip revision: cac8f585b12e2598783b7c570108eaa8d2262c4c authored by Martin v. Löwis on 13 June 2008, 18:19:49 UTC
Update AMD64 build for amalgamated sqlite.
Tip revision: cac8f58
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