summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/debugger_r.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-12-06 20:36:55 (GMT)
committerGitHub <noreply@github.com>2018-12-06 20:36:55 (GMT)
commit42b1d6127bd8595522a78a75166ebb9fba74a6a2 (patch)
treef6ea667c159c1666d08ad9e81621bdca6f373637 /Lib/idlelib/debugger_r.py
parent20428527a7c188d988d20b267cfef58da10b0fc9 (diff)
downloadcpython-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.py2
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()