Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ianj-als/pypeline.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Johnson <ian.johnson@appliedlanguage.com>2013-05-14 13:12:39 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2013-05-14 13:12:39 +0400
commit28ac6ba840ecf8495f0ad0df908bd5453a65f852 (patch)
treef4331ae03234fbbb8fef26ed2f8ae06b43b70193
parent78754db34cfb91249b59bd9f64dbc63ce549c430 (diff)
Removed print statement.
-rw-r--r--src/pypeline/helpers/parallel_helpers.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/pypeline/helpers/parallel_helpers.py b/src/pypeline/helpers/parallel_helpers.py
index 1cba442..65d2d26 100644
--- a/src/pypeline/helpers/parallel_helpers.py
+++ b/src/pypeline/helpers/parallel_helpers.py
@@ -44,10 +44,7 @@ def cons_function_component(function,
# Unpack state
state = wrapped_state.state
- print "Comp input: %s" % str(future) if isinstance(future, Future) \
- else "Comp input Not Future: %s" % str(future)
-
- assert isinstance(future, Future)
+ assert isinstance(future, Future), "Future is not a future! Strange."
def do_transformation(a, s):
# Transform the input