31 @return flag indicating success (boolean) |
31 @return flag indicating success (boolean) |
32 @exception ValueError raised to indicate an invalid debugger kind |
32 @exception ValueError raised to indicate an invalid debugger kind |
33 was requested |
33 was requested |
34 """ |
34 """ |
35 global debugger |
35 global debugger |
36 res = 1 |
36 res = True |
37 try: |
37 try: |
38 if kind == "standard": |
38 if kind == "standard": |
39 import DebugClient |
39 import DebugClient |
40 debugger = DebugClient.DebugClient() |
40 debugger = DebugClient.DebugClient() |
41 elif kind == "threads": |
41 elif kind == "threads": |