(thread)
| 124 | |
| 125 | |
| 126 | def setThreadDaemon(thread): |
| 127 | # Reference: http://stackoverflow.com/questions/190010/daemon-threads-explanation |
| 128 | if PYVERSION >= "2.6": |
| 129 | thread.daemon = True |
| 130 | else: |
| 131 | thread.setDaemon(True) |
| 132 | |
| 133 | |
| 134 | def changeFoundCount(num): |