diff options
author | Raymond Hettinger <python@rcn.com> | 2004-05-12 21:35:06 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-05-12 21:35:06 (GMT) |
commit | 10c660673eddab34571f1dd73b21fa3f7fc615b3 (patch) | |
tree | 73b2a97e2944e30b525aa5ebd70233b278cf56e3 | |
parent | 0e371f2cb6178de7344c97e4a546703c4bba140e (diff) | |
download | cpython-10c660673eddab34571f1dd73b21fa3f7fc615b3.zip cpython-10c660673eddab34571f1dd73b21fa3f7fc615b3.tar.gz cpython-10c660673eddab34571f1dd73b21fa3f7fc615b3.tar.bz2 |
SF bug #952866: "can't multiply sequence *by* non-int"
Minor wording fix.
-rw-r--r-- | Objects/abstract.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c index f586d6d..01e3e4c 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -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) { |