Staging
v0.5.1
https://github.com/python/cpython
Revision aa4c36fbbb47fe54d578cb7f04f53179360e5aa7 authored by Serhiy Storchaka on 26 March 2015, 06:51:33 UTC, committed by Serhiy Storchaka on 26 March 2015, 06:51:33 UTC
1 parent f3fa308
Raw File
Tip revision: aa4c36fbbb47fe54d578cb7f04f53179360e5aa7 authored by Serhiy Storchaka on 26 March 2015, 06:51:33 UTC
Issue #23775: pprint() of OrderedDict now outputs the same representation
Tip revision: aa4c36f
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