Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 8e9afaf8226b62a18080d69533a41159c70193cb authored by Pablo Galindo on 05 October 2020, 17:24:54 UTC
Python 3.10.0a1
Tip revision: 8e9afaf
pycore_unionobject.h
#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;

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTERNAL_UNIONOBJECT_H */
back to top