Staging
v0.5.1
https://github.com/python/cpython
Revision 21255fc3932a60c064f85c0fe68f2840f390ebe4 authored by Terry Jan Reedy on 04 December 2017, 19:48:25 UTC, committed by GitHub on 04 December 2017, 19:48:25 UTC
Patches are in 3.7.0a3 even if this update is not.
1 parent 31a8393
Raw File
Tip revision: 21255fc3932a60c064f85c0fe68f2840f390ebe4 authored by Terry Jan Reedy on 04 December 2017, 19:48:25 UTC
bpo-30928: Update idlelib/NEWS.txt to 2017 Dec 3. (#4701)
Tip revision: 21255fc
namespaceobject.h

/* simple namespace object interface */

#ifndef NAMESPACEOBJECT_H
#define NAMESPACEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_DATA(PyTypeObject) _PyNamespace_Type;

PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
#endif /* !Py_LIMITED_API */

#ifdef __cplusplus
}
#endif
#endif /* !NAMESPACEOBJECT_H */
back to top