Staging
v0.8.1
https://github.com/python/cpython
Revision 4365833d11fb8e0139d9e8a543692e963a749e38 authored by Benjamin Peterson on 02 January 2017, 04:08:33 UTC, committed by Benjamin Peterson on 02 January 2017, 04:08:33 UTC
2 parent s 4950ae1 + b6e2142
Raw File
Tip revision: 4365833d11fb8e0139d9e8a543692e963a749e38 authored by Benjamin Peterson on 02 January 2017, 04:08:33 UTC
merge 3.4
Tip revision: 4365833
namespaceobject.h

/* simple namespace object interface */

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

PyAPI_DATA(PyTypeObject) _PyNamespace_Type;

PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);

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