Message110954
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 |
|
| Date |
User |
Action |
Args |
| 2010-07-20 19:11:01 | belopolsky | set | recipients:
+ belopolsky, amaury.forgeotdarc, djc, eric.araujo |
| 2010-07-20 19:11:00 | belopolsky | set | messageid: <[email protected]> |
| 2010-07-20 19:10:59 | belopolsky | link | issue9314 messages |
| 2010-07-20 19:10:59 | belopolsky | create | |
|