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.

Author belopolsky
Recipients amaury.forgeotdarc, belopolsky, djc, eric.araujo
Date 2010-07-20.19:10:59
SpamBayes Score 0.00013533913
Marked as misclassified No
Message-id <1279653060.96.0.841629452053.issue9314@psf.upfronthosting.co.za>
In-reply-to
Content
Note that immutable types are consistent:

>>> x = tuple('abc')
>>> x += 'def'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: can only concatenate tuple (not "str") to tuple

>>> x + 'def'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: can only concatenate tuple (not "str") to tuple
History
Date User Action Args
2010-07-20 19:11:01belopolskysetrecipients: + belopolsky, amaury.forgeotdarc, djc, eric.araujo
2010-07-20 19:11:00belopolskysetmessageid: <1279653060.96.0.841629452053.issue9314@psf.upfronthosting.co.za>
2010-07-20 19:10:59belopolskylinkissue9314 messages
2010-07-20 19:10:59belopolskycreate