Revision 0fb18b02c8ad56299d6a2910be0bab8ad601ef24 authored by Thomas Wouters on 02 October 2023, 11:44:36 UTC, committed by Thomas Wouters on 02 October 2023, 11:48:14 UTC
1 parent f4f919e
Raw File
genericaliasobject.h
// Implementation of PEP 585: support list[int] etc.
#ifndef Py_GENERICALIASOBJECT_H
#define Py_GENERICALIASOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(PyObject *) Py_GenericAlias(PyObject *, PyObject *);
PyAPI_DATA(PyTypeObject) Py_GenericAliasType;

#ifdef __cplusplus
}
#endif
#endif /* !Py_GENERICALIASOBJECT_H */
back to top