We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reduce(vcat)
DataFrames.jl is commiting type piracy on reduce(vcat):
julia> reduce(vcat, Union{}[]; init=Int[]) Int64[] julia> using DataFrames julia> reduce(vcat, Union{}[]; init=Int[]) ERROR: TypeError: in keyword argument init, expected AbstractDataFrame, got a value of type Vector{Int64} Stacktrace: [1] top-level scope @ REPL[4]:1 julia> @which reduce(vcat, Union{}[]; init=Int[]) kwcall(::NamedTuple, ::typeof(reduce), ::typeof(vcat), dfs::Union{Tuple{AbstractDataFrame, Vararg{AbstractDataFrame}}, AbstractVector{<:AbstractDataFrame}}) @ DataFrames ~/.julia/packages/DataFrames/58MUJ/src/abstractdataframe/abstractdataframe.jl:1868
This causes real errors in other packages, notably: SciML/ModelingToolkit.jl#2965
The text was updated successfully, but these errors were encountered:
Fixed in #3457
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
DataFrames.jl is commiting type piracy on
reduce(vcat)
:This causes real errors in other packages, notably: SciML/ModelingToolkit.jl#2965
The text was updated successfully, but these errors were encountered: