Staging
v0.8.1
Revision 5d52022406d21818603c945e65a9ac8154a6bbab authored by Ned Deily on 17 May 2014, 21:30:09 UTC, committed by Ned Deily on 17 May 2014, 21:30:09 UTC
1 parent 6936159
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