summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-11-22 13:45:16 (GMT)
committerGitHub <noreply@github.com>2018-11-22 13:45:16 (GMT)
commit4d73ae776140a583fdfe8f016d88cc767791e481 (patch)
tree9cd76db8c15c8f760f5ad5bda224161182952d89
parentc48ff73dd60bec5dcbe64bedeff91e6db26d98bc (diff)
downloadcpython-4d73ae776140a583fdfe8f016d88cc767791e481.zip
cpython-4d73ae776140a583fdfe8f016d88cc767791e481.tar.gz
cpython-4d73ae776140a583fdfe8f016d88cc767791e481.tar.bz2
bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655)
When iterating using asdl_seq_LEN(), use 'Py_ssize_t' type instead of 'int' for the iterator variable, to avoid downcast on 64-bit platforms. _Py_asdl_int_seq_new() now also ensures that the index is greater than or equal to 0.
-rw-r--r--Include/asdl.h2
-rw-r--r--Python/ast.c18
2 files changed, 10 insertions, 10 deletions
diff --git a/Include/asdl.h b/Include/asdl.h
index 35e9fa1..fc6d223 100644
--- a/Include/asdl.h
+++ b/Include/asdl.h
@@ -36,7 +36,7 @@ asdl_int_seq *_Py_asdl_int_seq_new(Py_ssize_t size, PyArena *arena);
do { \
Py_ssize_t _asdl_i = (I); \
assert((S) != NULL); \
- assert(_asdl_i < (S)->size); \
+ assert(0 <= _asdl_i && _asdl_i < (S)->size); \
(S)->elements[_asdl_i] = (V); \
} while (0)
#else
diff --git a/Python/ast.c b/Python/ast.c
index 7f72aa2..0d78cc5 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -22,7 +22,7 @@ static int validate_expr(expr_ty, expr_context_ty);
static int
validate_comprehension(asdl_seq *gens)
{
- int i;
+ Py_ssize_t i;
if (!asdl_seq_LEN(gens)) {
PyErr_SetString(PyExc_ValueError, "comprehension with no generators");
return 0;
@@ -46,7 +46,7 @@ validate_slice(slice_ty slice)
(!slice->v.Slice.upper || validate_expr(slice->v.Slice.upper, Load)) &&
(!slice->v.Slice.step || validate_expr(slice->v.Slice.step, Load));
case ExtSlice_kind: {
- int i;
+ Py_ssize_t i;
if (!validate_nonempty_seq(slice->v.ExtSlice.dims, "dims", "ExtSlice"))
return 0;
for (i = 0; i < asdl_seq_LEN(slice->v.ExtSlice.dims); i++)
@@ -65,7 +65,7 @@ validate_slice(slice_ty slice)
static int
validate_keywords(asdl_seq *keywords)
{
- int i;
+ Py_ssize_t i;
for (i = 0; i < asdl_seq_LEN(keywords); i++)
if (!validate_expr(((keyword_ty)asdl_seq_GET(keywords, i))->value, Load))
return 0;
@@ -75,7 +75,7 @@ validate_keywords(asdl_seq *keywords)
static int
validate_args(asdl_seq *args)
{
- int i;
+ Py_ssize_t i;
for (i = 0; i < asdl_seq_LEN(args); i++) {
arg_ty arg = asdl_seq_GET(args, i);
if (arg->annotation && !validate_expr(arg->annotation, Load))
@@ -348,7 +348,7 @@ validate_body(asdl_seq *body, const char *owner)
static int
validate_stmt(stmt_ty stmt)
{
- int i;
+ Py_ssize_t i;
switch (stmt->kind) {
case FunctionDef_kind:
return validate_body(stmt->v.FunctionDef.body, "FunctionDef") &&
@@ -490,7 +490,7 @@ validate_stmt(stmt_ty stmt)
static int
validate_stmts(asdl_seq *seq)
{
- int i;
+ Py_ssize_t i;
for (i = 0; i < asdl_seq_LEN(seq); i++) {
stmt_ty stmt = asdl_seq_GET(seq, i);
if (stmt) {
@@ -509,7 +509,7 @@ validate_stmts(asdl_seq *seq)
static int
validate_exprs(asdl_seq *exprs, expr_context_ty ctx, int null_ok)
{
- int i;
+ Py_ssize_t i;
for (i = 0; i < asdl_seq_LEN(exprs); i++) {
expr_ty expr = asdl_seq_GET(exprs, i);
if (expr) {
@@ -1060,7 +1060,7 @@ set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n)
context for all the contained elements.
*/
if (s) {
- int i;
+ Py_ssize_t i;
for (i = 0; i < asdl_seq_LEN(s); i++) {
if (!set_context(c, (expr_ty)asdl_seq_GET(s, i), ctx, n))
@@ -2355,7 +2355,7 @@ ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr)
by treating the sequence as a tuple literal if there are
no slice features.
*/
- int j;
+ Py_ssize_t j;
slice_ty slc;
expr_ty e;
int simple = 1;