commit | 42b1d6127bd8595522a78a75166ebb9fba74a6a2 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Thu Dec 06 22:36:55 2018 +0200 |
committer | GitHub <noreply@github.com> | Thu Dec 06 22:36:55 2018 +0200 |
tree | f6ea667c159c1666d08ad9e81621bdca6f373637 | |
parent | 20428527a7c188d988d20b267cfef58da10b0fc9 [diff] [blame] |
bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934)
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 @@ #----------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()