aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-07 04:10:45 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-07 04:10:45 +0100
commitf3463bcf7ce68953e3a23a0e65f13a895e6a4cf7 (patch)
tree2abc190adb9bb3937af46a0a5df4766cbfe7f02e
parentadd concurrently (extra) (diff)
downloadjoin-python-f3463bcf7ce68953e3a23a0e65f13a895e6a4cf7.tar.gz
join-python-f3463bcf7ce68953e3a23a0e65f13a895e6a4cf7.tar.bz2
join-python-f3463bcf7ce68953e3a23a0e65f13a895e6a4cf7.tar.xz
whoops
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rwxr-xr-xsrc/test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test.py b/src/test.py
index 987fe0c..3bb7da6 100755
--- a/src/test.py
+++ b/src/test.py
@@ -61,10 +61,6 @@ def join(*fs):
def ordered_join(*f_groups):
- pass
-
-
-def unordered_join(*f_groups):
condition = threading.Condition()
rc = None
index = 0
@@ -94,6 +90,10 @@ def unordered_join(*f_groups):
return rc
+def unordered_join(*f_groups):
+ pass
+
+
# extra, not a part of join-calculus
def concurrently(*fs):
ts = [threading.Thread(target = f, args = args, kwargs = kwargs) for f in fs]