diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-06-22 15:07:50 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-06-22 15:07:50 -0400 |
commit | 224506e95d2d44aa6583cbcda9f4b7305f834ab3 (patch) | |
tree | c8208abc6f9516289eb6cc88f866b60043f05a41 /gdb/python | |
parent | ac0d67ed1dcf470bad6a3bc4800c2ddc9bedecca (diff) | |
download | binutils-224506e95d2d44aa6583cbcda9f4b7305f834ab3.zip binutils-224506e95d2d44aa6583cbcda9f4b7305f834ab3.tar.gz binutils-224506e95d2d44aa6583cbcda9f4b7305f834ab3.tar.bz2 |
gdb: fix python/lib/gdb/__init__.py formatting
Run black to fix this formatting.
gdb/ChangeLog:
* python/lib/gdb/__init__.py: Format.
Change-Id: I68ea306d1991bf7243b2c8aeeb11719d668851e5
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/lib/gdb/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/python/lib/gdb/__init__.py b/gdb/python/lib/gdb/__init__.py index f2f38b3..7b6d870 100644 --- a/gdb/python/lib/gdb/__init__.py +++ b/gdb/python/lib/gdb/__init__.py @@ -94,10 +94,10 @@ def _execute_unwinders(pending_frame): Returns: Tuple with: - [0] gdb.UnwindInfo instance - [1] Name of unwinder that claimed the frame (type `str`) + [0] gdb.UnwindInfo instance + [1] Name of unwinder that claimed the frame (type `str`) - or None, if no unwinder has claimed the frame. + or None, if no unwinder has claimed the frame. """ for objfile in objfiles(): for unwinder in objfile.frame_unwinders: |