src/eric7/EricUtilities/EricMutexLocker.py

branch
eric7
changeset 10423
299802979277
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10422:e28b89693f37 10423:299802979277
38 def __exit__(self, exc_type, exc_value, traceback): 38 def __exit__(self, exc_type, exc_value, traceback):
39 """ 39 """
40 Special method called when exiting the runtime ccontext. 40 Special method called when exiting the runtime ccontext.
41 41
42 @param exc_type type of an exception raised in the runtime context 42 @param exc_type type of an exception raised in the runtime context
43 @type Class
43 @param exc_value value of an exception raised in the runtime context 44 @param exc_value value of an exception raised in the runtime context
45 @type Exception
44 @param traceback traceback of an exception raised in the runtime 46 @param traceback traceback of an exception raised in the runtime
45 context 47 context
48 @type Traceback
46 @return always returns None to not suppress any exception 49 @return always returns None to not suppress any exception
47 @rtype None 50 @rtype None
48 """ 51 """
49 self.__mutex.unlock() 52 self.__mutex.unlock()
50 53

eric ide

mercurial