Staging
v0.8.1
Revision 99cb0cda15152c3d0f5c405caa12dca190591b8f authored by Martin Panter on 12 June 2016, 01:55:03 UTC, committed by Martin Panter on 12 June 2016, 01:55:03 UTC
2 parent s 4f62d38 + 0c0da48
Raw File
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