From: Andrew Burgess Date: Wed, 4 Sep 2024 16:53:38 +0000 (+0100) Subject: gdb: reformat Python file with black X-Git-Tag: gdb-16-branchpoint~1001 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8a950d80d54a751a40cc38b9ae56d7266e95c3fd;p=thirdparty%2Fbinutils-gdb.git 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. --- diff --git a/gdb/testsuite/gdb.base/reset-catchpoint-cond.py b/gdb/testsuite/gdb.base/reset-catchpoint-cond.py index 87b374c201e..bf90ec8ef69 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)