(thread)
| 113 | traceback.print_exc() |
| 114 | |
| 115 | def setDaemon(thread): |
| 116 | # Reference: http://stackoverflow.com/questions/190010/daemon-threads-explanation |
| 117 | if PYVERSION >= "2.6": |
| 118 | thread.daemon = True |
| 119 | else: |
| 120 | thread.setDaemon(True) |
| 121 | |
| 122 | def runThreads(numThreads, threadFunction, cleanupFunction=None, forwardException=True, threadChoice=False, startThreadMsg=True): |
| 123 | threads = [] |
no outgoing calls
no test coverage detected
searching dependent graphs…