mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934)
This commit is contained in:
parent
20428527a7
commit
42b1d6127b
3 changed files with 9 additions and 4 deletions
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue