| 19 | # to do its own imports it will block waiting for this module's import |
| 20 | # to complete. |
| 21 | class Worker(threading.Thread): |
| 22 | def __init__(self, function, args): |
| 23 | threading.Thread.__init__(self) |
| 24 | self.function = function |
| 25 | self.args = args |
| 26 | |
| 27 | def run(self): |
| 28 | self.function(*self.args) |
| 29 | |
| 30 | for name, func, args in [ |
| 31 | # Bug 147376: TemporaryFile hung on Windows, starting in Python 2.4. |
no outgoing calls
no test coverage detected
searching dependent graphs…