mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-12-19 01:19:41 +08:00
gdb: re-format Python files with black 24.1.1
New year, new black version. Change-Id: I664601e6dd255358063e15f6d73bc5f02c8f2b9d
This commit is contained in:
@@ -251,7 +251,6 @@ class SymValueWrapper(object):
|
||||
|
||||
|
||||
class FrameVars(object):
|
||||
|
||||
"""Utility class to fetch and store frame local variables, or
|
||||
frame arguments."""
|
||||
|
||||
|
||||
@@ -21,7 +21,6 @@ import gdb.prompt
|
||||
|
||||
|
||||
class _ExtendedPrompt(gdb.Parameter):
|
||||
|
||||
"""Set the extended prompt.
|
||||
|
||||
Usage: set extended-prompt VALUE
|
||||
|
||||
@@ -386,18 +386,18 @@ def register_pretty_printers():
|
||||
pretty_printers_dict[re.compile("^container$")] = ContainerPrinter
|
||||
pretty_printers_dict[re.compile("^justchildren$")] = NoStringContainerPrinter
|
||||
|
||||
pretty_printers_dict[
|
||||
re.compile("^struct to_string_returns_value_inner$")
|
||||
] = ToStringReturnsValueInner
|
||||
pretty_printers_dict[
|
||||
re.compile("^to_string_returns_value_inner$")
|
||||
] = ToStringReturnsValueInner
|
||||
pretty_printers_dict[
|
||||
re.compile("^struct to_string_returns_value_wrapper$")
|
||||
] = ToStringReturnsValueWrapper
|
||||
pretty_printers_dict[
|
||||
re.compile("^to_string_returns_value_wrapper$")
|
||||
] = ToStringReturnsValueWrapper
|
||||
pretty_printers_dict[re.compile("^struct to_string_returns_value_inner$")] = (
|
||||
ToStringReturnsValueInner
|
||||
)
|
||||
pretty_printers_dict[re.compile("^to_string_returns_value_inner$")] = (
|
||||
ToStringReturnsValueInner
|
||||
)
|
||||
pretty_printers_dict[re.compile("^struct to_string_returns_value_wrapper$")] = (
|
||||
ToStringReturnsValueWrapper
|
||||
)
|
||||
pretty_printers_dict[re.compile("^to_string_returns_value_wrapper$")] = (
|
||||
ToStringReturnsValueWrapper
|
||||
)
|
||||
|
||||
pretty_printers_dict[re.compile("^struct ns$")] = pp_ns
|
||||
pretty_printers_dict[re.compile("^ns$")] = pp_ns
|
||||
|
||||
Reference in New Issue
Block a user