blob: a412f05200ce74b2dbcd48d2a8c19d4b73f0f0b9 [file] [log] [blame]
Barry Warsaw409da152012-06-03 16:18:47 -04001
2/* simple namespace object interface */
3
4#ifndef NAMESPACEOBJECT_H
5#define NAMESPACEOBJECT_H
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10PyAPI_DATA(PyTypeObject) _PyNamespace_Type;
11
12PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
13
14#ifdef __cplusplus
15}
16#endif
17#endif /* !NAMESPACEOBJECT_H */