eric6/DebugClients/Python/DebugClientBase.py

changeset 7570
a7a5750aded4
parent 7550
e91462fd0838
child 7594
ee35df230130
equal deleted inserted replaced
7567:bb196e51827d 7570:a7a5750aded4
66 """ 66 """
67 Replacement for the standard input() builtin (Python 2). 67 Replacement for the standard input() builtin (Python 2).
68 68
69 This function works with the split debugger. 69 This function works with the split debugger.
70 70
71 @param prompt prompt to be shown 71 @param prompt prompt to be shown
72 @type str 72 @type str
73 @return result of the input() call 73 @return result of the input() call
74 @rtype str 74 @rtype str
75 """ 75 """
76 if DebugClientInstance is None or not DebugClientInstance.redirect: 76 if DebugClientInstance is None or not DebugClientInstance.redirect:

eric ide

mercurial