aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/debugger.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/debugger.py')
-rw-r--r--Lib/idlelib/debugger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/debugger.py b/Lib/idlelib/debugger.py
index 452c62b4265..a92bb98d908 100644
--- a/Lib/idlelib/debugger.py
+++ b/Lib/idlelib/debugger.py
@@ -509,7 +509,7 @@ class NamespaceViewer:
# There is also an obscure bug in sorted(dict) where the
# interpreter gets into a loop requesting non-existing dict[0],
# dict[1], dict[2], etc from the debugger_r.DictProxy.
- ###
+ # TODO recheck above; see debugger_r 159ff, debugobj 60.
keys_list = dict.keys()
names = sorted(keys_list)
###