Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 51ba5b7d0c194b0c2b1e5d647e70e3538b8dde3e authored by Larry Hastings on 16 January 2017, 08:19:36 UTC
Version bump for Python 3.5.3.
Tip revision: 51ba5b7
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