Debugger/DebuggerInterfaceNone.py

changeset 5850
7fae79975686
parent 5658
e5f6fe5855fd
child 5899
0516f6548ca6
equal deleted inserted replaced
5849:512001065055 5850:7fae79975686
407 @param debugServer reference to the debug server 407 @param debugServer reference to the debug server
408 @type DebugServer 408 @type DebugServer
409 @param passive flag indicating passive connection mode 409 @param passive flag indicating passive connection mode
410 @type bool 410 @type bool
411 @return instantiated debugger interface 411 @return instantiated debugger interface
412 @rtype DebuggerInterfacePython 412 @rtype DebuggerInterfaceNone
413 """ 413 """
414 return DebuggerInterfaceNone(debugServer, passive) 414 return DebuggerInterfaceNone(debugServer, passive)
415 415
416 416
417 def getRegistryData(): 417 def getRegistryData():
418 """ 418 """
419 Module functionto get characterizing data for the debugger interface. 419 Module function to get characterizing data for the debugger interface.
420 420
421 @return tuple containing client type, client capabilities, client file 421 @return list of tuples containing the client type, the client capabilities,
422 type associations and reference to creation function 422 the client file type associations and a reference to the creation
423 @rtype tuple of (str, int, list of str, function) 423 function
424 """ 424 @rtype list of tuple of (str, int, list of str, function)
425 return ["None", ClientDefaultCapabilities, ClientTypeAssociations, 425 """
426 createDebuggerInterfaceNone] 426 return [("None", ClientDefaultCapabilities, ClientTypeAssociations,
427 createDebuggerInterfaceNone)]

eric ide

mercurial