diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-12-06 20:52:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-06 20:52:43 (GMT) |
commit | 6485aa6eb1024672f08afdd577e2b5792eb6b03c (patch) | |
tree | 56d314bba51eb6f4305f401a9b1633bc26bc16dc /Lib/idlelib | |
parent | 560fa4db17983ce37c1453c057901c627b2c3abc (diff) | |
download | cpython-6485aa6eb1024672f08afdd577e2b5792eb6b03c.zip cpython-6485aa6eb1024672f08afdd577e2b5792eb6b03c.tar.gz cpython-6485aa6eb1024672f08afdd577e2b5792eb6b03c.tar.bz2 |
bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934)
(cherry picked from commit 42b1d6127bd8595522a78a75166ebb9fba74a6a2)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Lib/idlelib')
-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() |