Staging
v0.5.1
https://github.com/python/cpython
Revision 5851218e4228d36306b5a46387fc27daf48cf840 authored by R David Murray on 02 January 2014, 18:38:02 UTC, committed by R David Murray on 02 January 2014, 18:38:02 UTC
1 parent 8a2bfc1
Raw File
Tip revision: 5851218e4228d36306b5a46387fc27daf48cf840 authored by R David Murray on 02 January 2014, 18:38:02 UTC
#17282: Document unittest.main defaultTest argument.
Tip revision: 5851218
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