diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-05-15 12:52:36 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-05-15 12:52:36 (GMT) |
commit | 41829e82c1826dd71b64f8334959bcf7731f66fc (patch) | |
tree | 044814c17c3dfa573f4fba996cd1f6a54c304457 /Python | |
parent | cc10a37ef0e05906c0f1c93bea646f3521b84a76 (diff) | |
download | cpython-41829e82c1826dd71b64f8334959bcf7731f66fc.zip cpython-41829e82c1826dd71b64f8334959bcf7731f66fc.tar.gz cpython-41829e82c1826dd71b64f8334959bcf7731f66fc.tar.bz2 |
Document f4d7ad6c9d6e.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/Python-ast.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 4ca269f..d9e13e2 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -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*)) { - Py_ssize_t i, n = asdl_seq_LEN(seq); + int i, n = asdl_seq_LEN(seq); PyObject *result = PyList_New(n); PyObject *value; if (!result) @@ -2857,7 +2857,7 @@ ast2obj_expr(void* _o) goto failed; Py_DECREF(value); { - Py_ssize_t i, n = asdl_seq_LEN(o->v.Compare.ops); + int i, n = asdl_seq_LEN(o->v.Compare.ops); value = PyList_New(n); if (!value) goto failed; for(i = 0; i < n; i++) |