Staging
v0.8.1
https://github.com/python/cpython
Revision 0ac0b11ec1bb471021982fa48d67ce8b11052080 authored by Antoine Pitrou on 24 August 2012, 17:50:43 UTC, committed by Antoine Pitrou on 24 August 2012, 17:50:43 UTC
2 parent s cb0ec7d + 15251a9
Raw File
Tip revision: 0ac0b11ec1bb471021982fa48d67ce8b11052080 authored by Antoine Pitrou on 24 August 2012, 17:50:43 UTC
Add glossary references
Tip revision: 0ac0b11
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