Staging
v0.5.1
Revision 35ac5f82804829eec51d5553f080c5697453b5bb authored by Serhiy Storchaka on 20 May 2015, 15:29:18 UTC, committed by Serhiy Storchaka on 20 May 2015, 15:29:18 UTC
module now support pickling.  Added readable and evaluable repr for these
objects.  Based on patch by Josh Rosenberg.
1 parent 5418d0b
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