Staging
v0.5.1
https://github.com/python/cpython
Revision d5299866f95f1e74255312444176280494d2782a authored by Benjamin Peterson on 11 June 2008, 01:31:28 UTC, committed by Benjamin Peterson on 11 June 2008, 01:31:28 UTC
I had to disable one test because it was functioning incorrectly, see #1530559
I also removed the debugging prints
1 parent 610a93e
Raw File
Tip revision: d5299866f95f1e74255312444176280494d2782a authored by Benjamin Peterson on 11 June 2008, 01:31:28 UTC
convert test_struct to a unittest thanks to Giampaolo Rodola
Tip revision: d529986
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