Staging
v0.5.1
https://github.com/python/cpython
Revision 2c0c68d927bfa557f98bac26644f5b64c4b135a7 authored by Terry Jan Reedy on 04 December 2017, 22:04:15 UTC, committed by GitHub on 04 December 2017, 22:04:15 UTC
1 parent f0db54a
Raw File
Tip revision: 2c0c68d927bfa557f98bac26644f5b64c4b135a7 authored by Terry Jan Reedy on 04 December 2017, 22:04:15 UTC
bpo-30928: update idlelib/NEWS.txt. (#4706)
Tip revision: 2c0c68d
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