diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-12-06 20:36:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-06 20:36:55 (GMT) |
commit | 42b1d6127bd8595522a78a75166ebb9fba74a6a2 (patch) | |
tree | f6ea667c159c1666d08ad9e81621bdca6f373637 /Lib/idlelib/debugger_r.py | |
parent | 20428527a7c188d988d20b267cfef58da10b0fc9 (diff) | |
download | cpython-42b1d6127bd8595522a78a75166ebb9fba74a6a2.zip cpython-42b1d6127bd8595522a78a75166ebb9fba74a6a2.tar.gz cpython-42b1d6127bd8595522a78a75166ebb9fba74a6a2.tar.bz2 |
bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934)
Diffstat (limited to 'Lib/idlelib/debugger_r.py')
-rw-r--r-- | Lib/idlelib/debugger_r.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/debugger_r.py b/Lib/idlelib/debugger_r.py index 01a3bd2..0e6dcfb 100644 --- a/Lib/idlelib/debugger_r.py +++ b/Lib/idlelib/debugger_r.py @@ -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() |