Show More
@@ -250,10 +250,9 def _posixexitstatus(code): | |||||
250 |
|
250 | |||
251 | def _windowsworker(ui, func, staticargs, args): |
|
251 | def _windowsworker(ui, func, staticargs, args): | |
252 | class Worker(threading.Thread): |
|
252 | class Worker(threading.Thread): | |
253 | def __init__(self, taskqueue, resultqueue, func, staticargs, |
|
253 | def __init__(self, taskqueue, resultqueue, func, staticargs, *args, | |
254 | group=None, target=None, name=None, verbose=None): |
|
254 | **kwargs): | |
255 |
threading.Thread.__init__(self, |
|
255 | threading.Thread.__init__(self, *args, **kwargs) | |
256 | name=name, verbose=verbose) |
|
|||
257 | self._taskqueue = taskqueue |
|
256 | self._taskqueue = taskqueue | |
258 | self._resultqueue = resultqueue |
|
257 | self._resultqueue = resultqueue | |
259 | self._func = func |
|
258 | self._func = func |
General Comments 0
You need to be logged in to leave comments.
Login now