Staging
v0.5.1
https://github.com/python/cpython
Revision 342212c52afd375d93f44f3ecda0914d77372f26 authored by Christian Heimes on 26 March 2008, 22:20:26 UTC, committed by Christian Heimes on 26 March 2008, 22:20:26 UTC
1 parent 3c60833
Raw File
Tip revision: 342212c52afd375d93f44f3ecda0914d77372f26 authored by Christian Heimes on 26 March 2008, 22:20:26 UTC
Surround p_flags access with #ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD
Tip revision: 342212c
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