aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2024-09-04 17:53:38 +0100
committerAndrew Burgess <aburgess@redhat.com>2024-09-04 17:53:38 +0100
commit8a950d80d54a751a40cc38b9ae56d7266e95c3fd (patch)
treec6e400972179eef9bc48915fc02cc24d8532ca98
parent0121d70b233cd2c472a4447478f557ea9e6126c1 (diff)
downloadbinutils-8a950d80d54a751a40cc38b9ae56d7266e95c3fd.zip
binutils-8a950d80d54a751a40cc38b9ae56d7266e95c3fd.tar.gz
binutils-8a950d80d54a751a40cc38b9ae56d7266e95c3fd.tar.bz2
gdb: reformat Python file with black
Fix formatting of a Python file added in commit: commit a92e943014f5e8d6a2eaccaf8a725941ac47a121 Date: Wed Aug 14 15:16:46 2024 +0100 gdb: implement ::re_set method for catchpoint class No functional change after this commit.
-rw-r--r--gdb/testsuite/gdb.base/reset-catchpoint-cond.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.base/reset-catchpoint-cond.py b/gdb/testsuite/gdb.base/reset-catchpoint-cond.py
index 87b374c..bf90ec8 100644
--- a/gdb/testsuite/gdb.base/reset-catchpoint-cond.py
+++ b/gdb/testsuite/gdb.base/reset-catchpoint-cond.py
@@ -15,7 +15,9 @@
bp_modified_list = []
+
def bp_modified(bp):
- bp_modified_list.append (bp.number)
+ bp_modified_list.append(bp.number)
+
gdb.events.breakpoint_modified.connect(bp_modified)