src/eric7/Debugger/DebugServer.py

branch
eric7
changeset 10373
093dcebe5ecb
parent 10335
cc0a21ae0975
child 10417
c6011e501282
equal deleted inserted replaced
10372:1444b4bee64b 10373:093dcebe5ecb
424 interactive shell should be returned 424 interactive shell should be returned
425 @type bool 425 @type bool
426 @return list of supported languages 426 @return list of supported languages
427 @rtype list of str 427 @rtype list of str
428 """ 428 """
429 languages = list(self.__debuggerInterfaceRegistry.keys()) 429 languages = list(self.__debuggerInterfaceRegistry)
430 with contextlib.suppress(ValueError): 430 with contextlib.suppress(ValueError):
431 languages.remove("None") 431 languages.remove("None")
432 432
433 if shellOnly: 433 if shellOnly:
434 languages = [ 434 languages = [

eric ide

mercurial