From 55baa50350c9ab9fc8870efc4c18634a41388bf5 Mon Sep 17 00:00:00 2001 From: Sebastian Gutsche Date: Tue, 27 Nov 2018 10:23:10 +0100 Subject: [PATCH] Changed default IsList conversion to return Array{Union{Any,Nothing},1} --- LibGAP.jl/src/gap_to_julia.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGAP.jl/src/gap_to_julia.jl b/LibGAP.jl/src/gap_to_julia.jl index d969db248..cc831b758 100644 --- a/LibGAP.jl/src/gap_to_julia.jl +++ b/LibGAP.jl/src/gap_to_julia.jl @@ -239,7 +239,7 @@ function gap_to_julia(x::MPtr) elseif Globals.IsString(x) return gap_to_julia(AbstractString,x) elseif Globals.IsList(x) - return gap_to_julia(Array{Any,1},x) + return gap_to_julia(Array{Union{Any,Nothing},1},x) elseif Globals.IsRecord(x) return gap_to_julia(Dict{Symbol,Any},x) end