Staging
v0.5.1
https://github.com/python/cpython
Revision 23a192d9633ace0fe83c9ac392e1df06d8c35da6 authored by Benjamin Peterson on 11 May 2014, 23:17:02 UTC, committed by Benjamin Peterson on 11 May 2014, 23:17:02 UTC
1 parent 8e0aa05
Raw File
Tip revision: 23a192d9633ace0fe83c9ac392e1df06d8c35da6 authored by Benjamin Peterson on 11 May 2014, 23:17:02 UTC
use logical rather than bit and
Tip revision: 23a192d
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