flake8 points out that some code in frame_filters.py is referring to
undefined variables.
In the first hunk, I've changed the code to match what other
'complete' methods do in this file.
In the second hunk, I've simply removed the try/except -- if
get_filter_priority fails, it will raise GdbError, which is already
handled properly by gdb.
if text.count(" ") == 0:
return _complete_frame_filter_list(text, word, False)
else:
- printer_list = frame._return_list(text.split()[0].rstrip())
+ printer_list = gdb.frames.return_list(text.split()[0].rstrip())
return _complete_frame_filter_name(word, printer_list)
def invoke(self, arg, from_tty):
return
filter_name = command_tuple[1]
list_name = command_tuple[0]
- try:
- priority = self.get_filter_priority(list_name, filter_name)
- except Exception:
- e = sys.exc_info()[1]
- print("Error printing filter priority for '" + name + "':" + str(e))
- else:
- print(
- "Priority of filter '"
- + filter_name
- + "' in list '"
- + list_name
- + "' is: "
- + str(priority)
- )
+ priority = self.get_filter_priority(list_name, filter_name)
+ print(
+ "Priority of filter '"
+ + filter_name
+ + "' in list '"
+ + list_name
+ + "' is: "
+ + str(priority)
+ )
# Register commands