Jack Dunn

Results 12 issues of Jack Dunn

Consider the following (contrived) example: ```julia module Tmp "generic method" function g(::Any, ::Any) end "extra doc for specialized method" g(::Real) end # module ``` We define a single function and...

Type: Bug

Consider the following reduced example: ```julia module Tmp export f "method for Real" function f(::Vector{

Type: Bug

Right now, every link in the document is checked but in theory each unique URL only needs to be checked once. It's not a big concern, but I have seen...

Type: Enhancement
help wanted

If I try to force the install via conda on Windows like following: ```julia ENV["R_HOME"] = "*" Pkg.build("RCall") ``` I get an error, because it tries to call `isdir("*")` which...

In Julia 1.4, the artifact download process prints to stdout by default (a change from 1.3 where it was silent by default). This means that the first run of `julia`...

This might be a stupid question as I don't really understand what's going on under the hood, but it seems like the generated binary will segfault as soon as the...

The docs for proportionmap require `wv::AbstractVector{

bug

I don't think this is a bug in Conda.jl, but I am seeing the following error during the miniconda installation when running under Julia 1.9.0 on M1 Mac (13.3.1): ```...

I am seeing the following segfault when running the following example on Julia 1.9: ``` $ julia -e 'using RCall; R"JuliaCall::julia_setup()"' ┌ Warning: RCall.jl: Julia version 1.9.0 at location /Users/jack/.julia/juliaup/julia-1.9.0+0.x64.apple.darwin14/bin...

The following example breaks because the zero-dim array isn't handled correctly. ``` import JSON2 struct A a::Array{Int,0} end a = A(zeros(Int)) JSON2.read(JSON2.write(a), A) ``` gives ``` ERROR: MethodError: no method...