public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Fixes 28ab59607ef40b9571c0702ffba8f6aa6fb1b033
@ 2023-06-20 18:41 Simon Farre
  0 siblings, 0 replies; only message in thread
From: Simon Farre @ 2023-06-20 18:41 UTC (permalink / raw)
  To: gdb-patches; +Cc: Simon Farre

Python formatting errors fixed, introduced by this commit.
---
 gdb/testsuite/gdb.python/py-thread-exited.py | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/gdb/testsuite/gdb.python/py-thread-exited.py b/gdb/testsuite/gdb.python/py-thread-exited.py
index 32a9e5b01b3..1a55c3dabfb 100644
--- a/gdb/testsuite/gdb.python/py-thread-exited.py
+++ b/gdb/testsuite/gdb.python/py-thread-exited.py
@@ -21,17 +21,25 @@ threadTwoExit = ""
 # store it here. we don't care about it though.
 mainThreadExit = ""
 
+
 def thread_exited_handler(event):
     global threadOneExit, threadTwoExit, mainThreadExit
     print("{}".format(event))
     assert isinstance(event, gdb.ThreadExitedEvent)
     if threadOneExit == "":
-        threadOneExit = "event type: thread-exited. global num: {}".format(event.inferior_thread.global_num)
+        threadOneExit = "event type: thread-exited. global num: {}".format(
+            event.inferior_thread.global_num
+        )
     else:
         if threadTwoExit == "":
-            threadTwoExit = "event type: thread-exited. global num: {}".format(event.inferior_thread.global_num)
+            threadTwoExit = "event type: thread-exited. global num: {}".format(
+                event.inferior_thread.global_num
+            )
         else:
-            mainThreadExit = "event type: thread-exited. global num: {}".format(event.inferior_thread.global_num)
+            mainThreadExit = "event type: thread-exited. global num: {}".format(
+                event.inferior_thread.global_num
+            )
+
 
 class test_events(gdb.Command):
     """Test events."""
@@ -43,4 +51,5 @@ class test_events(gdb.Command):
         gdb.events.thread_exited.connect(thread_exited_handler)
         print("Event testers registered.")
 
+
 test_events()
-- 
2.41.0


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-06-20 18:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-20 18:41 [PATCH] Fixes 28ab59607ef40b9571c0702ffba8f6aa6fb1b033 Simon Farre

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).