Remove unused imports from gdb's Python code

The "sys" import is unused in several Python files.  This removes this
line from all the places where it is unnecessary.
This commit is contained in:
Tom Tromey 2023-02-13 10:16:05 -07:00
parent d27ff777c6
commit da59d966b8
4 changed files with 0 additions and 5 deletions

View file

@ -17,7 +17,6 @@
"""Implementation of the GDB 'explore' command using the GDB Python API.""" """Implementation of the GDB 'explore' command using the GDB Python API."""
import gdb import gdb
import sys
class Explorer(object): class Explorer(object):

View file

@ -14,8 +14,6 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import gdb.printing import gdb.printing

View file

@ -19,7 +19,6 @@
import gdb import gdb
import gdb.types import gdb.types
import re import re
import sys
class PrettyPrinter(object): class PrettyPrinter(object):

View file

@ -18,7 +18,6 @@
import gdb import gdb
import re import re
import sys
class XMethod(object): class XMethod(object):