Exemple #1
0
 def wait( me, *a,**k):
     me.stderr.write( '%s: %s waiting\n' % ( dbg_funcname_thread(), me) )
     _Condition.wait( me, *a,**k)
     me.stderr.write( '%s: %s eo wait\n' % ( dbg_funcname_thread(), me) )
Exemple #2
0
		def wait(self, timeout=None):
			if timeout is None or timeout > response_interval:
				timeout = response_interval
			_Condition.wait(self, timeout)