Amit Murthy

Results 29 comments of Amit Murthy

The immediate culprit appears to be `model.nodes[:s2_alpha].eval` with ``` julia> typeof(model.nodes[:s2_alpha].eval) Mamba.##338#339 ``` It is not being serialized as it is defined under `Mamba`. Where and how is it being...

``` julia> addprocs(2) julia> @everywhere module Foo type Bar x Bar() = new(()->1) end end WARNING: deprecated syntax "type" at REPL[2]:2. Use "mutable struct" instead. julia> bar = Foo.Bar() Foo.Bar(Foo.#1)...

``` julia> addprocs(2); julia> @everywhere module Foo mutable struct Bar x Bar() = new(()->1) end make_bar() = (b=Bar(); b.x=()->1; b) end; julia> bar = Foo.Bar(); julia> typeof(bar.x) Foo.##1#2 julia> remotecall_fetch(typeof,...

Both I think. You can check if you can avoid an `eval` under module `Mamba`. I'll open an issue on Julialang for addressing this.

You can follow the discussion on the linked issue above. Meanwhile, I could run rats.jl in parallel on 0.6 by eval'ing into Main. ``` diff --git a/src/utils.jl b/src/utils.jl index 438dbd3..aee2a00...

Please see open thread at https://github.com/JuliaWeb/Roadmap/issues/1#issuecomment-74374590

Can ask this question on Julia Users too - feedback from users of both packages will be useful.

I just pushed 3 patches to your branch. Have noticed the following issues: - long ssl_version was generated as Int64 instead of Clong, and caused a struct mismatch on my...

Output on my machine: ``` julia> using httpc julia> httpc.print_curl_version_info() 3 7.27.0 0x00071b00 i686-pc-linux-gnu 50813 OpenSSL/1.0.1c 0 1.2.7 Ptr{Ptr{Uint8}} @0xb5de3f80 Not Found 0 1.25 0 Not Found 1-element curl_version_info_data Array:...