mirror of
https://github.com/python/cpython.git
synced 2025-09-24 01:13:22 +00:00

Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Co-authored-by: Guido van Rossum <gvanrossum@gmail.com>
19 lines
513 B
C
19 lines
513 B
C
// Implementation of PEP 585: support list[int] etc.
|
|
#ifndef Py_GENERICALIASOBJECT_H
|
|
#define Py_GENERICALIASOBJECT_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef Py_LIMITED_API
|
|
PyAPI_FUNC(PyObject *) _Py_subs_parameters(PyObject *, PyObject *, PyObject *, PyObject *);
|
|
PyAPI_FUNC(PyObject *) _Py_make_parameters(PyObject *);
|
|
#endif
|
|
|
|
PyAPI_FUNC(PyObject *) Py_GenericAlias(PyObject *, PyObject *);
|
|
PyAPI_DATA(PyTypeObject) Py_GenericAliasType;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Py_GENERICALIASOBJECT_H */
|