mirror of
https://github.com/python/cpython
synced 2024-11-02 10:03:49 +00:00
94faa0724f
These functions were undocumented and excluded from the limited C API. Most names defined by these header files were not prefixed by "Py" and so could create names conflicts. For example, Python-ast.h defined a "Yield" macro which was conflict with the "Yield" name used by the Windows <winbase.h> header. Use the Python ast module instead. * Move Include/asdl.h to Include/internal/pycore_asdl.h. * Move Include/Python-ast.h to Include/internal/pycore_ast.h. * Remove ast.h header file. * pycore_symtable.h no longer includes Python-ast.h.
6 lines
188 B
C
6 lines
188 B
C
#include "Python.h"
|
|
#include "pycore_asdl.h"
|
|
|
|
GENERATE_ASDL_SEQ_CONSTRUCTOR(generic, void*);
|
|
GENERATE_ASDL_SEQ_CONSTRUCTOR(identifier, PyObject*);
|
|
GENERATE_ASDL_SEQ_CONSTRUCTOR(int, int);
|