Skip to content
New issue

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

IOContext(io::IOContext, ctx::IOContext) does not include context variables from io #40957

Open
fonsp opened this issue May 26, 2021 · 0 comments

Comments

@fonsp
Copy link
Member

fonsp commented May 26, 2021

This behaviour seems unintuitive to me:

julia> left = IOContext(devnull, :a => 1);

julia> right = IOContext(devnull, :b => 2);

julia> io = IOContext(IOContext(devnull, :a => 1), IOContext(devnull, :b => 2));

julia> get(io, :a, "not found")
"not found"

julia> get(io, :b, "not found")
2
@fonsp fonsp changed the title IOContext(io, ctx::IOContext) does not include context variables from io IOContext(io::IOContext, ctx::IOContext) does not include context variables from io May 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant