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": |