Staging
v0.8.1
Revision 45031dfd1c37fca6361e881d56f4e62f800af91a authored by Christian Heimes on 30 November 2007, 15:13:13 UTC, committed by Christian Heimes on 30 November 2007, 15:13:13 UTC
Guido said:
Please roll this back.  The error message you added is inappropriate
when the parameter to a legitimate register() call is omitted, e.g.

collections.Sequence.register()
1 parent 7d2ff88
Raw File
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