[issue35429] Incorrect use of raise NotImplemented

2018-12-07 Thread Brett Cannon
Brett Cannon added the comment: This was fixed by https://github.com/python/cpython/pull/10934 -- nosy: +brett.cannon stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue35429] Incorrect use of raise NotImplemented

2018-12-06 Thread Roman Yurchak
Roman Yurchak added the comment: Resolved in https://bugs.python.org/issue33023 -- resolution: -> duplicate ___ Python tracker ___

[issue35429] Incorrect use of raise NotImplemented

2018-12-06 Thread Roman Yurchak
Change by Roman Yurchak : -- keywords: +patch pull_requests: +10237 stage: -> patch review ___ Python tracker ___ ___

[issue35429] Incorrect use of raise NotImplemented

2018-12-06 Thread Roman Yurchak
New submission from Roman Yurchak : 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 "", line 1, in TypeError: