Staging
v0.5.1
https://github.com/python/cpython
Revision fe6e5e7cfd68eeaa69fd1511f354a1b4d8d90990 authored by Victor Stinner on 08 December 2020, 22:51:54 UTC, committed by GitHub on 08 December 2020, 22:51:54 UTC
Py_CompileString() is now always declared as a function by
Include/pythonrun.h. It is overriden with a macro in
Include/cpython/pythonrun.h.
1 parent 815506d
Raw File
Tip revision: fe6e5e7cfd68eeaa69fd1511f354a1b4d8d90990 authored by Victor Stinner on 08 December 2020, 22:51:54 UTC
bpo-35134: Add Include/cpython/pythonrun.h file (GH-23701)
Tip revision: fe6e5e7
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