DebugClients/Python/eric5dbgstub.py

changeset 2953
703452a2876f
parent 2302
f29e9405c851
child 2987
c99695c0f13a
equal deleted inserted replaced
2952:94fc661a54a2 2953:703452a2876f
27 """ 27 """
28 Module function to initialize a debugger for remote debugging. 28 Module function to initialize a debugger for remote debugging.
29 29
30 @param kind type of debugger ("standard" or "threads") 30 @param kind type of debugger ("standard" or "threads")
31 @return flag indicating success (boolean) 31 @return flag indicating success (boolean)
32 @exception ValueError raised to indicate an invalid debugger kind
33 was requested
32 """ 34 """
33 global debugger 35 global debugger
34 res = 1 36 res = 1
35 try: 37 try:
36 if kind == "standard": 38 if kind == "standard":

eric ide

mercurial