diff options
author | Tom Tromey <tromey@adacore.com> | 2023-05-22 13:43:31 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2023-07-21 12:05:30 -0600 |
commit | 672c55ddcf17d322dbc868d8465f0027d8210e73 (patch) | |
tree | c680f1c790b56c31d8c5ac7a91a4883dac53aa04 /gdb/python/lib | |
parent | 4f7d9afbcdfa3b223f51924925f9bc6b42fcdc0b (diff) | |
download | gdb-672c55ddcf17d322dbc868d8465f0027d8210e73.zip gdb-672c55ddcf17d322dbc868d8465f0027d8210e73.tar.gz gdb-672c55ddcf17d322dbc868d8465f0027d8210e73.tar.bz2 |
Remove unused imports
I noticed an unused import in dap/evaluate.py; and also I found out
that my recent changes to use frame filters from DAP left some unused
imports in dap/bt.py.
Diffstat (limited to 'gdb/python/lib')
-rw-r--r-- | gdb/python/lib/gdb/dap/bt.py | 3 | ||||
-rw-r--r-- | gdb/python/lib/gdb/dap/evaluate.py | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/gdb/python/lib/gdb/dap/bt.py b/gdb/python/lib/gdb/dap/bt.py index 0350a3b..d1f8281 100644 --- a/gdb/python/lib/gdb/dap/bt.py +++ b/gdb/python/lib/gdb/dap/bt.py @@ -15,11 +15,8 @@ import gdb import os -import itertools from gdb.frames import frame_iterator -from gdb.FrameIterator import FrameIterator -from gdb.FrameDecorator import FrameDecorator from .frames import frame_id from .server import request, capability from .startup import send_gdb_with_response, in_gdb_thread diff --git a/gdb/python/lib/gdb/dap/evaluate.py b/gdb/python/lib/gdb/dap/evaluate.py index 635a05f..63e8033 100644 --- a/gdb/python/lib/gdb/dap/evaluate.py +++ b/gdb/python/lib/gdb/dap/evaluate.py @@ -14,7 +14,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import gdb -import gdb.printing # This is deprecated in 3.9, but required in older versions. from typing import Optional |