Staging
v0.5.1
https://github.com/python/cpython
Revision 5d4121a6311065723426b977a8f080518cdf8738 authored by Ned Deily on 12 October 2013, 22:47:58 UTC, committed by Ned Deily on 12 October 2013, 22:47:58 UTC
emulation has changed from 0-based indexing to 1-based like gnu readline.
Original patch by Ronald Oussoren.
1 parent a140348
Raw File
Tip revision: 5d4121a6311065723426b977a8f080518cdf8738 authored by Ned Deily on 12 October 2013, 22:47:58 UTC
Issue #18458: Prevent crashes with newer versions of libedit. Its readline
Tip revision: 5d4121a
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