Staging
v0.5.1
https://github.com/python/cpython
Revision f92544483fc724b7e9ac11b2ee86b38e069cc70f authored by Miss Islington (bot) on 18 July 2020, 13:14:32 UTC, committed by GitHub on 18 July 2020, 13:14:32 UTC
(cherry picked from commit 9b01c598ca2576a1056816e85dd84bf5f9c74688)

Co-authored-by: Jordan Speicher <uSpike@users.noreply.github.com>
1 parent 760552c
Raw File
Tip revision: f92544483fc724b7e9ac11b2ee86b38e069cc70f authored by Miss Islington (bot) on 18 July 2020, 13:14:32 UTC
bpo-41325: Add version note for args and kwargs property in call object (GH-21525)
Tip revision: f925444
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