diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-26 20:13:55 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-02-27 13:28:32 -0500 |
commit | 09de95fbb79c31b1b163a0c19bc1f0cd428c5d8c (patch) | |
tree | df66d8b6c7bdd07070d49f3ed64819102bacf7af /gdb/testsuite/gdb.python/py-inferior-leak.py | |
parent | aa992b382f91f426cd51bf1375d78eacb509f2cc (diff) | |
download | binutils-09de95fbb79c31b1b163a0c19bc1f0cd428c5d8c.zip binutils-09de95fbb79c31b1b163a0c19bc1f0cd428c5d8c.tar.gz binutils-09de95fbb79c31b1b163a0c19bc1f0cd428c5d8c.tar.bz2 |
gdb: reformat Python files with black 23.1.0
Change-Id: Ie8ec8870a16d71c5858f5d08958309d23c318302
Reviewed-By: Tom Tromey <tom@tromey.com>
Reviewed-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/testsuite/gdb.python/py-inferior-leak.py')
-rw-r--r-- | gdb/testsuite/gdb.python/py-inferior-leak.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-inferior-leak.py b/gdb/testsuite/gdb.python/py-inferior-leak.py index dbdf160..c26a546 100644 --- a/gdb/testsuite/gdb.python/py-inferior-leak.py +++ b/gdb/testsuite/gdb.python/py-inferior-leak.py @@ -21,6 +21,7 @@ import re # object sent to us in the new_inferior event. inf = None + # Register the new_inferior event handler. def new_inferior_handler(event): global inf @@ -33,6 +34,7 @@ gdb.events.new_inferior.connect(new_inferior_handler) # originating from this script. filters = [tracemalloc.Filter(True, "*py-inferior-leak.py")] + # Add a new inferior, and return the number of the new inferior. def add_inferior(): output = gdb.execute("add-inferior", False, True) |