Staging
v0.8.1
https://github.com/python/cpython
Revision 0e0e391fa3954a2583fe464504b86983a22d2577 authored by R David Murray on 16 April 2014, 00:25:18 UTC, committed by R David Murray on 16 April 2014, 00:25:18 UTC
1 parent 65425b4
Raw File
Tip revision: 0e0e391fa3954a2583fe464504b86983a22d2577 authored by R David Murray on 16 April 2014, 00:25:18 UTC
#20874: update tutorial wording: sophisticated line editing is now standard.
Tip revision: 0e0e391
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