https://github.com/python/cpython
Raw File
Tip revision: 77490701e1656065cef0aaa649c0ad7f9c7ddfee authored by Serhiy Storchaka on 20 November 2018, 17:26:09 UTC
bpo-9842: Add references for using "..." as a placeholder to the index. (GH-10330)
Tip revision: 7749070
namespaceobject.h

/* simple namespace object interface */

#ifndef NAMESPACEOBJECT_H
#define NAMESPACEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_DATA(PyTypeObject) _PyNamespace_Type;

PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
#endif /* !Py_LIMITED_API */

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