DebugClients/Python3/DebugBase.py

changeset 97
c4086afea02b
parent 96
9624a110667d
child 791
9ec2ac20e54e
equal deleted inserted replaced
96:9624a110667d 97:c4086afea02b
21 """ 21 """
22 Module function used for debugging the debug client. 22 Module function used for debugging the debug client.
23 23
24 @param s data to be printed 24 @param s data to be printed
25 """ 25 """
26 import sys
27 sys.__stderr__.write('{0!s}\n'.format(s)) 26 sys.__stderr__.write('{0!s}\n'.format(s))
28 sys.__stderr__.flush() 27 sys.__stderr__.flush()
29 28
30 def setRecursionLimit(limit): 29 def setRecursionLimit(limit):
31 """ 30 """

eric ide

mercurial