Staging
v0.5.1
https://github.com/python/cpython
Revision a809e4a54007303efb084b85ba53605adaa41b64 authored by Georg Brandl on 25 March 2013, 06:01:37 UTC, committed by Georg Brandl on 25 March 2013, 06:01:37 UTC
2 parent s d08d0b1 + 153866e
Raw File
Tip revision: a809e4a54007303efb084b85ba53605adaa41b64 authored by Georg Brandl on 25 March 2013, 06:01:37 UTC
merge with upstream 3.3 branch
Tip revision: a809e4a
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