We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2fcb586 + 8b7f37c commit 37e1463Copy full SHA for 37e1463
.travis.yml
@@ -6,6 +6,10 @@ matrix:
6
env: TOXENV=py27
7
- python: 3.6
8
env: TOXENV=py36
9
+ - python: pypy
10
+ env: TOXENV=pypy
11
+ - python: pypy3
12
+ env: TOXENV=pypy3
13
- env: TOXENV=coverage
14
install:
15
- pip install -U pip tox codecov
src/os_3m_engine/core/othread.py
@@ -65,10 +65,11 @@ def thread_num(self):
65
return len(self._threads)
66
67
def start(self):
68
+ list(map(lambda t: t.start(), self._threads))
69
while not self._start_trigger.wait(0.1):
70
if self._start_trigger.is_set():
71
break
- list(map(lambda t: t.start(), self._threads))
72
+
73
74
def setDaemon(self, daemonic):
75
list(map(lambda t: t.setDaemon(daemonic), self._threads))
0 commit comments