aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-07 14:52:00 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-07 14:52:00 +0100
commit81d929332e3dde3577a0e5eb82a2105a66dfa694 (patch)
treef415ba245a0ccf641e5327ef539efcdc333cf04d
parentsignals can be joined and their return fetched (diff)
downloadjoin-python-81d929332e3dde3577a0e5eb82a2105a66dfa694.tar.gz
join-python-81d929332e3dde3577a0e5eb82a2105a66dfa694.tar.bz2
join-python-81d929332e3dde3577a0e5eb82a2105a66dfa694.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-xsrc/test.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test.py b/src/test.py
index 7aa5dc9..a864e18 100755
--- a/src/test.py
+++ b/src/test.py
@@ -111,7 +111,6 @@ def unordered_join(*f_groups):
return ordered_join(*f_groups)
-# extra, not a part of join-calculus
def concurrently(*fs):
ts = [threading.Thread(target = f, args = args, kwargs = kwargs) for f in fs]
for t in ts: