Commit 77fa9379 authored by Benjamin Peterson's avatar Benjamin Peterson

use Py_ssize_t for ast sequence lengths

parent c5f31ed6
...@@ -784,7 +784,7 @@ static int add_attributes(PyTypeObject* type, char**attrs, int num_fields) ...@@ -784,7 +784,7 @@ static int add_attributes(PyTypeObject* type, char**attrs, int num_fields)
static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*)) static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*))
{ {
int i, n = asdl_seq_LEN(seq); Py_ssize_t i, n = asdl_seq_LEN(seq);
PyObject *result = PyList_New(n); PyObject *result = PyList_New(n);
PyObject *value; PyObject *value;
if (!result) if (!result)
...@@ -1106,7 +1106,7 @@ class ObjVisitor(PickleVisitor): ...@@ -1106,7 +1106,7 @@ class ObjVisitor(PickleVisitor):
# While the sequence elements are stored as void*, # While the sequence elements are stored as void*,
# ast2obj_cmpop expects an enum # ast2obj_cmpop expects an enum
self.emit("{", depth) self.emit("{", depth)
self.emit("int i, n = asdl_seq_LEN(%s);" % value, depth+1) self.emit("Py_ssize_t i, n = asdl_seq_LEN(%s);" % value, depth+1)
self.emit("value = PyList_New(n);", depth+1) self.emit("value = PyList_New(n);", depth+1)
self.emit("if (!value) goto failed;", depth+1) self.emit("if (!value) goto failed;", depth+1)
self.emit("for(i = 0; i < n; i++)", depth+1) self.emit("for(i = 0; i < n; i++)", depth+1)
......
...@@ -636,7 +636,7 @@ static int add_attributes(PyTypeObject* type, char**attrs, int num_fields) ...@@ -636,7 +636,7 @@ static int add_attributes(PyTypeObject* type, char**attrs, int num_fields)
static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*)) static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*))
{ {
int i, n = asdl_seq_LEN(seq); Py_ssize_t i, n = asdl_seq_LEN(seq);
PyObject *result = PyList_New(n); PyObject *result = PyList_New(n);
PyObject *value; PyObject *value;
if (!result) if (!result)
...@@ -2857,7 +2857,7 @@ ast2obj_expr(void* _o) ...@@ -2857,7 +2857,7 @@ ast2obj_expr(void* _o)
goto failed; goto failed;
Py_DECREF(value); Py_DECREF(value);
{ {
int i, n = asdl_seq_LEN(o->v.Compare.ops); Py_ssize_t i, n = asdl_seq_LEN(o->v.Compare.ops);
value = PyList_New(n); value = PyList_New(n);
if (!value) goto failed; if (!value) goto failed;
for(i = 0; i < n; i++) for(i = 0; i < n; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment