return INPLACE_FLOOR_DIVIDE;
}
PyErr_Format(PyExc_SystemError,
- "inplace binary op %d should not be possible",
- op);
+ "inplace binary op %d should not be possible", op);
return 0;
}
case GLOBAL_EXPLICIT:
optype = OP_GLOBAL;
break;
+ default:
+ /* scope can be 0 */
+ break;
}
/* XXX Leave assert here, but handle __doc__ and the like better */
Py_DECREF(mangled);
return 0;
case Param:
+ default:
PyErr_SetString(PyExc_SystemError,
"param invalid for deref variable");
return 0;
case AugStore:
break;
case Param:
+ default:
PyErr_SetString(PyExc_SystemError,
"param invalid for local variable");
return 0;
case AugStore:
break;
case Param:
+ default:
PyErr_SetString(PyExc_SystemError,
"param invalid for global variable");
return 0;
case AugStore:
break;
case Param:
+ default:
PyErr_SetString(PyExc_SystemError,
"param invalid for name variable");
return 0;
ADDOP_NAME(c, DELETE_ATTR, e->v.Attribute.attr, names);
break;
case Param:
+ default:
PyErr_SetString(PyExc_SystemError,
"param invalid in attribute expression");
return 0;
VISIT_SLICE(c, e->v.Subscript.slice, Del);
break;
case Param:
+ default:
PyErr_SetString(PyExc_SystemError,
"param invalid in subscript expression");
return 0;
ADDOP(c, inplace_binop(c, s->v.AugAssign.op));
return compiler_nameop(c, e->v.Name.id, Store);
default:
- fprintf(stderr,
- "invalid node type for augmented assignment\n");
+ PyErr_Format(PyExc_SystemError,
+ "invalid node type (%d) for augmented assignment",
+ e->kind);
return 0;
}
return 1;
case Store: op = STORE_SUBSCR; break;
case Del: op = DELETE_SUBSCR; break;
case Param:
- fprintf(stderr,
- "invalid %s kind %d in subscript\n",
- kind, ctx);
+ PyErr_Format(PyExc_SystemError,
+ "invalid %s kind %d in subscript\n",
+ kind, ctx);
return 0;
}
if (ctx == AugLoad) {
case Store: op = STORE_SLICE; break;
case Del: op = DELETE_SLICE; break;
case Param:
+ default:
PyErr_SetString(PyExc_SystemError,
"param invalid in simple slice");
return 0;
break;
case Slice_kind:
return compiler_slice(c, s, ctx);
- break;
case Index_kind:
VISIT(c, expr, s->v.Index.value);
break;
case ExtSlice_kind:
+ default:
PyErr_SetString(PyExc_SystemError,
"extended slice invalid in nested slice");
return 0;
if (ctx != AugStore)
VISIT(c, expr, s->v.Index.value);
return compiler_handle_subscr(c, "index", ctx);
+ default:
+ PyErr_Format(PyExc_SystemError,
+ "invalid slice %d", s->kind);
+ return 0;
}
return 1;
}