Message267529
No, that issue just adds the address to the repr() of types. It is not normal to use repr for type objects in error messages:
>>> int(None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
>>> open(None, 0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: open() argument 2 must be str, not int
>>> os.fspath(None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: expected str, bytes or os.PathLike object, not <class 'NoneType' at 0x1086bb638> |
|
| Date |
User |
Action |
Args |
| 2016-06-06 13:55:27 | JelleZijlstra | set | recipients:
+ JelleZijlstra, SilentGhost, ethan.furman |
| 2016-06-06 13:55:27 | JelleZijlstra | set | messageid: <[email protected]> |
| 2016-06-06 13:55:27 | JelleZijlstra | link | issue27232 messages |
| 2016-06-06 13:55:27 | JelleZijlstra | create | |
|