mirror of
https://github.com/python/cpython.git
synced 2026-05-29 07:35:02 -04:00
5c66a26dee
response to a message by Laura Creighton on c.l.py. E.g.
>>> 0+''
TypeError: unsupported operand types for +: 'int' and 'str'
(previously this did not mention the operand types)
>>> ''+0
TypeError: cannot concatenate 'str' and 'int' objects