Message321497
| Author | Dan Rose |
|---|---|
| Recipients | Dan Rose |
| Date | 2018-07-11.19:32:57 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1531337577.35.0.56676864532.issue34100@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Another curious case:
a = (500,500); b = (500,500)
print(a[0] is b[0]) # True
print(a[0] is b[1]) # False
print(a[1] is b[0]) # False
print(a[1] is b[1]) # True |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-07-11 19:32:57 | Dan Rose | set | recipients: + Dan Rose |
| 2018-07-11 19:32:57 | Dan Rose | set | messageid: <1531337577.35.0.56676864532.issue34100@psf.upfronthosting.co.za> |
| 2018-07-11 19:32:57 | Dan Rose | link | issue34100 messages |
| 2018-07-11 19:32:57 | Dan Rose | create | |