blob: cf002976b27cd7712ee80bf348f55c5c562bc12d [file] [log] [blame]
Guido van Rossum48b069a2020-04-07 09:50:06 -07001// Implementation of PEP 585: support list[int] etc.
2#ifndef Py_GENERICALIASOBJECT_H
3#define Py_GENERICALIASOBJECT_H
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8PyAPI_FUNC(PyObject *) Py_GenericAlias(PyObject *, PyObject *);
9PyAPI_DATA(PyTypeObject) Py_GenericAliasType;
10
11#ifdef __cplusplus
12}
13#endif
14#endif /* !Py_GENERICALIASOBJECT_H */