Staging
v0.5.1
https://github.com/python/cpython
Revision 0ef96c2b2a291c9d2d9c0ba42bbc1900a21e65f3 authored by Victor Stinner on 07 December 2020, 10:56:20 UTC, committed by GitHub on 07 December 2020, 10:56:20 UTC
1 parent c266736
Raw File
Tip revision: 0ef96c2b2a291c9d2d9c0ba42bbc1900a21e65f3 authored by Victor Stinner on 07 December 2020, 10:56:20 UTC
bpo-30459: Cast the result of PyCell_SET to void (GH-23654)
Tip revision: 0ef96c2
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