Message12582

Author zyasoft
Recipients chcooper, zyasoft
Date 2019-07-18.21:37:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563485858.46.0.619509114804.issue2786@roundup.psfhosted.org>
In-reply-to
Content
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'
History
Date User Action Args
2019-07-18 21:37:38zyasoftsetmessageid: <1563485858.46.0.619509114804.issue2786@roundup.psfhosted.org>
2019-07-18 21:37:38zyasoftsetrecipients: + zyasoft, chcooper
2019-07-18 21:37:38zyasoftlinkissue2786 messages
2019-07-18 21:37:38zyasoftcreate