Staging
v0.5.1
https://github.com/python/cpython
Revision 8577e5ae090dcd63447807e77c1dadc8be9602b9 authored by doko@ubuntu.com on 07 May 2014, 02:44:42 UTC, committed by doko@ubuntu.com on 07 May 2014, 02:44:42 UTC
1 parent 024c5ee
Raw File
Tip revision: 8577e5ae090dcd63447807e77c1dadc8be9602b9 authored by doko@ubuntu.com on 07 May 2014, 02:44:42 UTC
- Issue #17752: Fix distutils tests when run from the installed location.
Tip revision: 8577e5a
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