Staging
v0.5.1
https://github.com/python/cpython
Revision fa098b6bc8662cceb944ad5a4a3e5eb63d3cb517 authored by Ned Deily on 17 May 2020, 06:57:25 UTC, committed by GitHub on 17 May 2020, 06:57:25 UTC
1 parent 9a45bfe
Raw File
Tip revision: fa098b6bc8662cceb944ad5a4a3e5eb63d3cb517 authored by Ned Deily on 17 May 2020, 06:57:25 UTC
bpo-35569: add Erlend to Misc/ACKS (GH-20146)
Tip revision: fa098b6
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