[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 'NotImplementedType' object is not callable
```

--
components: Library (Lib)
messages: 331244
nosy: rth
priority: normal
severity: normal
status: open
title: Incorrect use of raise NotImplemented
versions: Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com