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 = [ |