debugger: add an option to filter out locals for easier debugger debugging

This commit is contained in:
hjk
2010-06-11 13:44:18 +02:00
parent e42ca194c5
commit 628cf52f94
2 changed files with 11 additions and 1 deletions

View File

@@ -917,6 +917,8 @@ class Dumper:
# Locals
#
locals = listOfLocals(varList);
if "nolocals" in options:
locals = []
# Take care of the return value of the last function call.
if len(resultVarName) > 0: