2020-09-09 13:23:24 -07:00
|
|
|
#ifndef Py_INTERNAL_UNIONOBJECT_H
|
|
|
|
|
#define Py_INTERNAL_UNIONOBJECT_H
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
PyAPI_FUNC(PyObject *) _Py_Union(PyObject *args);
|
|
|
|
|
PyAPI_DATA(PyTypeObject) _Py_UnionType;
|
2020-11-09 12:00:13 +08:00
|
|
|
PyAPI_FUNC(PyObject *) _Py_union_type_or(PyObject* self, PyObject* param);
|
2020-09-09 13:23:24 -07:00
|
|
|
|
2021-07-17 22:14:57 +03:00
|
|
|
PyObject *_Py_subs_parameters(PyObject *, PyObject *, PyObject *, PyObject *);
|
|
|
|
|
PyObject *_Py_make_parameters(PyObject *);
|
|
|
|
|
|
2020-09-09 13:23:24 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif /* !Py_INTERNAL_UNIONOBJECT_H */
|