Staging
v0.8.1
https://github.com/python/cpython
Revision f8471862d6514714790f4b9a0a51f3b7673de20c authored by Christian Heimes on 24 November 2013, 02:32:40 UTC, committed by Christian Heimes on 24 November 2013, 02:32:40 UTC
1 parent 23828f6
Raw File
Tip revision: f8471862d6514714790f4b9a0a51f3b7673de20c authored by Christian Heimes on 24 November 2013, 02:32:40 UTC
Fix make distclean for out-of-tree builds
Tip revision: f847186
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