diff options
Diffstat (limited to 'gdb/python/lib/gdb/dap/launch.py')
-rw-r--r-- | gdb/python/lib/gdb/dap/launch.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/python/lib/gdb/dap/launch.py b/gdb/python/lib/gdb/dap/launch.py index 6783d99..2674e02 100644 --- a/gdb/python/lib/gdb/dap/launch.py +++ b/gdb/python/lib/gdb/dap/launch.py @@ -13,14 +13,14 @@ # 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 gdb - # These are deprecated in 3.9, but required in older versions. from typing import Mapping, Optional, Sequence +import gdb + from .events import exec_and_expect_stop, expect_process, expect_stop -from .server import request, capability -from .startup import exec_and_log, DAPException +from .server import capability, request +from .startup import DAPException, exec_and_log # Any parameters here are necessarily extensions -- DAP requires this |