This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: "can't multiply sequence *by* non-int"
Type: Stage:
Components: Interpreter Core Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: rhettinger, tlynn
Priority: low Keywords:

Created on 2004-05-12 21:17 by tlynn, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg20788 - (view) Author: Tom Lynn (tlynn) Date: 2004-05-12 21:17
>>> ""*""
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
TypeError: can't multiply sequence to non-int

Shouldn't that say "can't multiply sequence by
non-int"? (or "with", or "and", but not "to")
msg20789 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2004-05-12 21:36
Logged In: YES 
user_id=80475

Fixed for Py2.4

Thanks for the bug report.
History
Date User Action Args
2022-04-11 14:56:04adminsetgithub: 40250
2004-05-12 21:17:19tlynncreate