Remove unused imports from gdb's Python code
authorTom Tromey <tromey@adacore.com>
Mon, 13 Feb 2023 17:16:05 +0000 (10:16 -0700)
committerTom Tromey <tromey@adacore.com>
Mon, 13 Feb 2023 17:22:48 +0000 (10:22 -0700)
The "sys" import is unused in several Python files.  This removes this
line from all the places where it is unnecessary.

gdb/python/lib/gdb/command/explore.py
gdb/python/lib/gdb/printer/bound_registers.py
gdb/python/lib/gdb/printing.py
gdb/python/lib/gdb/xmethod.py

index db72f33e9db5291781ab403b5d35d2ba33aef553..821bfb081ea8f0418b50b864f6197b1623fad68e 100644 (file)
@@ -17,7 +17,6 @@
 """Implementation of the GDB 'explore' command using the GDB Python API."""
 
 import gdb
-import sys
 
 
 class Explorer(object):
index e1566750ec002f5d1ca969bbe4382a80a22edf3c..08f30cbf2863bb81ee5d1278d76e7c4577352019 100644 (file)
@@ -14,8 +14,6 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-import sys
-
 import gdb.printing
 
 
index d6b7b85e40425d80bb34ba43a004eaf6e9a9ff65..740a96e60eb4b50e1696eedb78db93adcd620b54 100644 (file)
@@ -19,7 +19,6 @@
 import gdb
 import gdb.types
 import re
-import sys
 
 
 class PrettyPrinter(object):
index ab6cd28c303f52128813d6e102ad3a8163b82ccc..ef7d2011e1c4f47eeb62c67a6758ed9a75beb39e 100644 (file)
@@ -18,7 +18,6 @@
 
 import gdb
 import re
-import sys
 
 
 class XMethod(object):