Staging
v0.5.1
Revision dde25c485158b652ed34581cb977eb5bd439ade0 authored by Antoine Pitrou on 23 October 2013, 17:07:40 UTC, committed by Antoine Pitrou on 23 October 2013, 17:07:40 UTC
1 parent 776b888
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