Staging
v0.5.1
https://github.com/python/cpython
Revision 1f08c772f5a68bdf8309d6ad1cdddb838fc35feb authored by Larry Hastings on 03 August 2013, 19:58:12 UTC, committed by Larry Hastings on 03 August 2013, 19:58:12 UTC
1 parent 4e0f663
Raw File
Tip revision: 1f08c772f5a68bdf8309d6ad1cdddb838fc35feb authored by Larry Hastings on 03 August 2013, 19:58:12 UTC
Bumped version to 3.4.0a1.
Tip revision: 1f08c77
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