Message12580
>>> 3L - None
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for -: 'long' and 'NoneType'
>>> None - 3L
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: xxx
>>> None - 3.0
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for -: 'NoneType' and 'float' |
|
Date |
User |
Action |
Args |
2019-07-18 19:08:04 | chcooper | set | recipients:
+ chcooper |
2019-07-18 19:08:04 | chcooper | set | messageid: <1563476884.97.0.0253909624914.issue2786@roundup.psfhosted.org> |
2019-07-18 19:08:04 | chcooper | link | issue2786 messages |
2019-07-18 19:08:04 | chcooper | create | |
|