Staging
v0.8.1
Revision b52432cb8cd7f5f1fc71ea3b7c0ea11573d504f0 authored by Mark Shannon on 22 October 2020, 15:42:26 UTC, committed by GitHub on 22 October 2020, 15:42:26 UTC
1 parent b6f2fc9
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