]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
Suppress star import errors
authorTom Tromey <tromey@adacore.com>
Tue, 19 Mar 2024 16:55:30 +0000 (10:55 -0600)
committerTom Tromey <tromey@adacore.com>
Tue, 2 Apr 2024 16:58:37 +0000 (10:58 -0600)
commit788050bf18c05f9070cd4240c6ae90c6dee0f030
treebabb398c61bf74e9493bcad39912f6dbe7e5b1bd
parent80c69af864ce523221ec9f439997849c91c7ba85
Suppress star import errors

flake8 warns about the "from _gdb.disassembler import *" line in
disassembler.py, and a similar line from __init__.py.  These line are
needed to re-export names from the corresponding C++ module, so this
patch applies the appropriate "noqa" flags.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
gdb/python/lib/gdb/__init__.py
gdb/python/lib/gdb/disassembler.py