Staging
v0.5.1
https://github.com/python/cpython
Revision 2a6ce8adc5076296c82865bc1d98b6605dc3164c authored by Larry Hastings on 12 October 2019, 11:50:04 UTC, committed by Larry Hastings on 12 October 2019, 11:50:04 UTC
1 parent ac4f751
Raw File
Tip revision: 2a6ce8adc5076296c82865bc1d98b6605dc3164c authored by Larry Hastings on 12 October 2019, 11:50:04 UTC
Post-release update for 3.5.8rc2.
Tip revision: 2a6ce8a
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