Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: f1547d110ff195291e29ba5c29617912d12ecbec authored by Miss Islington (bot) on 17 April 2018, 15:36:30 UTC
bpo-33295: Skip test using missing external site (GH-6504) (GH-6511)
Tip revision: f1547d1
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