[PUSHED] gdb/python: reformat file with black

Message ID e030ce2c79feee6a35665a6580a23dcf937ea46f.1696277448.git.aburgess@redhat.com
State New
Headers
Series [PUSHED] gdb/python: reformat file with black |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gdb_check--master-aarch64 warning Patch is already merged
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 warning Patch is already merged
linaro-tcwg-bot/tcwg_gdb_build--master-arm warning Patch is already merged
linaro-tcwg-bot/tcwg_gdb_check--master-arm warning Patch is already merged

Commit Message

Andrew Burgess Oct. 2, 2023, 8:11 p.m. UTC
  Reformat a Python file with black after this commit:

  commit 59912fb2d22f8a4bb0862487f12a5cc65b6a013f
  Date:   Tue Sep 19 11:45:36 2023 +0100

      gdb: add Python events for program space addition and removal

There should be no functional change with this commit.
---
 gdb/testsuite/gdb.python/py-progspace-events.py | 3 +++
 1 file changed, 3 insertions(+)


base-commit: 57c699398c1a61f1a57574a5ed64654cbadd2a50
  

Patch

diff --git a/gdb/testsuite/gdb.python/py-progspace-events.py b/gdb/testsuite/gdb.python/py-progspace-events.py
index 3abb421cffa..555221dcd4e 100644
--- a/gdb/testsuite/gdb.python/py-progspace-events.py
+++ b/gdb/testsuite/gdb.python/py-progspace-events.py
@@ -19,11 +19,14 @@ 
 import gdb
 import gdb.events
 
+
 def new_progspace(event):
     print("NewProgspaceEvent: %s" % str(event.progspace))
 
+
 def free_progspace(event):
     print("FreeProgspaceEvent: %s" % str(event.progspace))
 
+
 gdb.events.new_progspace.connect(new_progspace)
 gdb.events.free_progspace.connect(free_progspace)