Run 'black' on gdb
authorTom Tromey <tromey@adacore.com>
Thu, 14 Jul 2022 18:39:56 +0000 (12:39 -0600)
committerTom Tromey <tromey@adacore.com>
Fri, 15 Jul 2022 13:55:32 +0000 (07:55 -0600)
Running 'black' on gdb fixed a couple of small issues.  This patch is
the result.

gdb/python/lib/gdb/__init__.py
gdb/testsuite/gdb.python/py-send-packet.py

index 9e9978ef30e352f58ab36ccb2bebb24c55e8bbfc..5b10e3e23813ee335c43299f1ac1f3a7940f884c 100644 (file)
@@ -30,7 +30,8 @@ from _gdb import *
 # Historically, gdb.events was always available, so ensure it's
 # still available without an explicit import.
 import _gdbevents as events
-sys.modules['gdb.events'] = events
+
+sys.modules["gdb.events"] = events
 
 
 class _GdbFile(object):
@@ -243,9 +244,9 @@ def set_parameter(name, value):
     # can return them, but they can't be passed to 'set' this way.
     if isinstance(value, bool):
         if value:
-            value = 'on'
+            value = "on"
         else:
-            value = 'off'
+            value = "off"
     execute("set " + name + " " + str(value), to_string=True)
 
 
index ae70b852538d20f34faf9c2dfd4337164bd974ad..26deeb1e40dc292bf6841064d01614e7ac9cd6ee 100644 (file)
@@ -114,10 +114,12 @@ def check_global_var(expected_val):
     if val != expected_val:
         raise gdb.GdbError("global_var is 0x%x, expected 0x%x" % (val, expected_val))
 
+
 # Return a bytes object representing an 'X' packet header with
 # address ADDR.
-def xpacket_header (addr):
-    return ("X%x,4:" % addr).encode('ascii')
+def xpacket_header(addr):
+    return ("X%x,4:" % addr).encode("ascii")
+
 
 # Set the 'X' packet to the remote target to set a global variable.
 # Checks that we can send byte values.