Skip to content

Commit

Permalink
closes #16322
Browse files Browse the repository at this point in the history
  • Loading branch information
amitmurthy committed May 30, 2016
1 parent 12d6b46 commit dd9d495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/pmap.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ end

pgenerate(p::WorkerPool, f, c1, c...; kwargs...) = pgenerate(p, a->f(a...), zip(c1, c...); kwargs...)

pgenerate(f, c; kwargs...) = pgenerate(default_worker_pool(), f, c...; kwargs...)
pgenerate(f, c; kwargs...) = pgenerate(default_worker_pool(), f, c; kwargs...)
pgenerate(f, c1, c...; kwargs...) = pgenerate(a->f(a...), zip(c1, c...); kwargs...)

function wrap_on_error(f, on_error; capture_data=false)
Expand Down

2 comments on commit dd9d495

@tkelman
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test?

@tkelman
Copy link
Contributor

@tkelman tkelman commented on dd9d495 Jul 9, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

still no test for this?

Please sign in to comment.