Message12582
These errors conform with CPython 2.7:
% python
Python 2.7.14 (default, Apr 25 2018, 15:22:05)
[GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 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: unsupported operand type(s) for -: 'NoneType' and 'long'
>>> 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 21:37:38 | zyasoft | set | messageid: <1563485858.46.0.619509114804.issue2786@roundup.psfhosted.org> |
2019-07-18 21:37:38 | zyasoft | set | recipients:
+ zyasoft, chcooper |
2019-07-18 21:37:38 | zyasoft | link | issue2786 messages |
2019-07-18 21:37:38 | zyasoft | create | |
|