Staging
v0.5.1
https://github.com/python/cpython
Revision e5df857cc3eb646d6d921eab14398fc8f47b8be9 authored by Žiga Seilnacht on 21 March 2007, 20:37:39 UTC, committed by Žiga Seilnacht on 21 March 2007, 20:37:39 UTC
now be unpickled.
 (backport form rev. 54492)
1 parent 7ed0a65
Raw File
Tip revision: e5df857cc3eb646d6d921eab14398fc8f47b8be9 authored by Žiga Seilnacht on 21 March 2007, 20:37:39 UTC
Bug #1675967: re patterns pickled with older Python versions can
Tip revision: e5df857
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