Staging
v0.5.1
Revision fa7193286099f8e4164f4a795afd5ad4a8e229df authored by Larry Hastings on 20 December 2015, 03:31:10 UTC, committed by Larry Hastings on 20 December 2015, 03:31:10 UTC
1 parent 5caf39d
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