Staging
v0.5.1
https://github.com/python/cpython
Revision 9949d6ed4b74e50566abc85ac0154a664e6436ee authored by Jesse Noller on 15 July 2008, 18:29:18 UTC, committed by Jesse Noller on 15 July 2008, 18:29:18 UTC
1 parent 2bad657
Raw File
Tip revision: 9949d6ed4b74e50566abc85ac0154a664e6436ee authored by Jesse Noller on 15 July 2008, 18:29:18 UTC
Revert 3270 patch: self._address is in pretty widespread use, need to revisit
Tip revision: 9949d6e
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