Fix couple of dead code paths (GH-7418)
This commit is contained in:
parent
e7b1136ec3
commit
27ee0f8551
|
@ -1617,12 +1617,10 @@ bytes_richcompare(PyBytesObject *a, PyBytesObject *b, int op)
|
||||||
case Py_GE:
|
case Py_GE:
|
||||||
/* a string is equal to itself */
|
/* a string is equal to itself */
|
||||||
Py_RETURN_TRUE;
|
Py_RETURN_TRUE;
|
||||||
break;
|
|
||||||
case Py_NE:
|
case Py_NE:
|
||||||
case Py_LT:
|
case Py_LT:
|
||||||
case Py_GT:
|
case Py_GT:
|
||||||
Py_RETURN_FALSE;
|
Py_RETURN_FALSE;
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
PyErr_BadArgument();
|
PyErr_BadArgument();
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
@ -192,7 +192,6 @@ FASTSEARCH(const STRINGLIB_CHAR* s, Py_ssize_t n,
|
||||||
}
|
}
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mlast = m - 1;
|
mlast = m - 1;
|
||||||
|
|
|
@ -2971,7 +2971,6 @@ ast_for_expr(struct compiling *c, const node *n)
|
||||||
return Compare(expression, ops, cmps, LINENO(n), n->n_col_offset,
|
return Compare(expression, ops, cmps, LINENO(n), n->n_col_offset,
|
||||||
n->n_end_lineno, n->n_end_col_offset, c->c_arena);
|
n->n_end_lineno, n->n_end_col_offset, c->c_arena);
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
|
|
||||||
case star_expr:
|
case star_expr:
|
||||||
return ast_for_starred(c, n);
|
return ast_for_starred(c, n);
|
||||||
|
@ -3618,7 +3617,6 @@ alias_for_import_name(struct compiling *c, const node *n, int store)
|
||||||
return NULL;
|
return NULL;
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
case dotted_name:
|
case dotted_name:
|
||||||
if (NCH(n) == 1) {
|
if (NCH(n) == 1) {
|
||||||
node *name_node = CHILD(n, 0);
|
node *name_node = CHILD(n, 0);
|
||||||
|
@ -3669,7 +3667,6 @@ alias_for_import_name(struct compiling *c, const node *n, int store)
|
||||||
}
|
}
|
||||||
return alias(str, NULL, c->c_arena);
|
return alias(str, NULL, c->c_arena);
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
case STAR:
|
case STAR:
|
||||||
str = PyUnicode_InternFromString("*");
|
str = PyUnicode_InternFromString("*");
|
||||||
if (!str)
|
if (!str)
|
||||||
|
|
|
@ -4868,7 +4868,6 @@ compiler_visit_expr1(struct compiler *c, expr_ty e)
|
||||||
return compiler_error(c,
|
return compiler_error(c,
|
||||||
"can't use starred expression here");
|
"can't use starred expression here");
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
case Name_kind:
|
case Name_kind:
|
||||||
return compiler_nameop(c, e->v.Name.id, e->v.Name.ctx);
|
return compiler_nameop(c, e->v.Name.id, e->v.Name.ctx);
|
||||||
/* child nodes of List and Tuple will have expr_context set */
|
/* child nodes of List and Tuple will have expr_context set */
|
||||||
|
|
Loading…
Reference in New Issue