Commit fd679fd7 authored by Raymond Hettinger's avatar Raymond Hettinger

SF bug #952866: "can't multiply sequence *by* non-int"

Minor wording fix.
parent c4c92da5
......@@ -636,7 +636,7 @@ sequence_repeat(intargfunc repeatfunc, PyObject *seq, PyObject *n)
}
else {
return type_error(
"can't multiply sequence to non-int");
"can't multiply sequence by non-int");
}
#if LONG_MAX != INT_MAX
if (count > INT_MAX) {
......
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