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 a wrong debugger kind |
32 """ |
33 """ |
33 global debugger |
34 global debugger |
34 res = True |
35 res = True |
35 try: |
36 try: |
36 if kind == "standard": |
37 if kind == "standard": |