Message110954
| 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:01 | belopolsky | set | recipients: + belopolsky, amaury.forgeotdarc, djc, eric.araujo |
| 2010-07-20 19:11:00 | belopolsky | set | messageid: <1279653060.96.0.841629452053.issue9314@psf.upfronthosting.co.za> |
| 2010-07-20 19:10:59 | belopolsky | link | issue9314 messages |
| 2010-07-20 19:10:59 | belopolsky | create | |