bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934)

This commit is contained in:
Serhiy Storchaka 2018-12-06 22:36:55 +02:00 committed by GitHub
parent 20428527a7
commit 42b1d6127b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View file

@ -157,7 +157,7 @@ class IdbAdapter:
#----------called by a DictProxy----------
def dict_keys(self, did):
raise NotImplemented("dict_keys not public or pickleable")
raise NotImplementedError("dict_keys not public or pickleable")
## dict = dicttable[did]
## return dict.keys()