This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rth
Recipients rth
Date 2018-12-06.20:01:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1544126518.18.0.788709270274.issue35429@psf.upfronthosting.co.za>
In-reply-to
Content
In two places in stdlib, `raise NotImplemented` is used instead of `raise NotImplementedError`. The former is not valid and produces,

```
>>> raise NotImplemented('message')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'NotImplementedType' object is not callable
```
History
Date User Action Args
2018-12-06 20:01:58rthsetrecipients: + rth
2018-12-06 20:01:58rthsetmessageid: <1544126518.18.0.788709270274.issue35429@psf.upfronthosting.co.za>
2018-12-06 20:01:58rthlinkissue35429 messages
2018-12-06 20:01:58rthcreate