Let reversed() work with itself.

This commit is contained in:
Raymond Hettinger 2004-02-08 10:49:42 +00:00
parent 8a1a594590
commit 06353f76be
3 changed files with 17 additions and 1 deletions

View file

@ -22,6 +22,7 @@ extern "C" {
typedef struct {
PyObject_VAR_HEAD
PyObject **ob_item;
int allocated;
} PyListObject;
PyAPI_DATA(PyTypeObject) PyList_Type;