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
Originally reported at #19456 (comment) Reproducing below:
julia> y = (x) -> (() -> x) (::#1) (generic function with 1 method) julia> g = y(1) julia> g() 1 julia> io = IOBuffer() IOBuffer(data=UInt8[...], readable=true, writable=true, seekable=true, append=fa lse, size=0, maxsize=Inf, ptr=1, mark=-1) julia> serialize(io, y) julia> seekstart(io) IOBuffer(data=UInt8[...], readable=true, writable=true, seekable=true, append=fa lse, size=316, maxsize=Inf, ptr=1, mark=-1) julia> deserialize(io) # crashes
Going through the history of changes to base/serialize.jl, commit e3bec2a#diff-aec7b7bfc3115e923e4137ad38876951 is the first one that causes the above failure.
base/serialize.jl
cc: @JeffBezanson
The text was updated successfully, but these errors were encountered:
fix #21793, regression in serializing nested closure
86adba9
4c54935
Merge pull request #21799 from JuliaLang/jb/fix21793
9cac047
0f1aa84
(cherry picked from commit 4c54935) ref #21799
JeffBezanson
No branches or pull requests
Originally reported at #19456 (comment)
Reproducing below:
Going through the history of changes to
base/serialize.jl
, commit e3bec2a#diff-aec7b7bfc3115e923e4137ad38876951 is the first one that causes the above failure.cc: @JeffBezanson
The text was updated successfully, but these errors were encountered: