Staging
v0.5.1
https://github.com/python/cpython
Revision 15899209770970c0320b47d1ae5749b998152c9f authored by Yury Selivanov on 19 February 2014, 16:10:52 UTC, committed by Yury Selivanov on 19 February 2014, 16:10:52 UTC
1 parent a6919aa
Raw File
Tip revision: 15899209770970c0320b47d1ae5749b998152c9f authored by Yury Selivanov on 19 February 2014, 16:10:52 UTC
asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol
Tip revision: 1589920
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