Staging
v0.8.1
https://github.com/python/cpython
Revision 22336ddd3263c7f4cc680fdac6e12a357ce2cded authored by Mark Dickinson on 02 February 2009, 21:37:16 UTC, committed by Mark Dickinson on 02 February 2009, 21:37:16 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r69224 | mark.dickinson | 2009-02-02 21:29:40 +0000 (Mon, 02 Feb 2009) | 3 lines

  Issue #1717, continued: Doc fixes and other cleanup related
  to renaming of tp_compare.
........
1 parent ae0803c
Raw File
Tip revision: 22336ddd3263c7f4cc680fdac6e12a357ce2cded authored by Mark Dickinson on 02 February 2009, 21:37:16 UTC
Merged revisions 69224 via svnmerge from
Tip revision: 22336dd
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