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
I just run into this while testing some code:
gap> JuliaEvalString("module foo x = 1 end"); <Julia: Main.foo> gap> Julia.foo.x; 1 gap> JuliaEvalString("module foo x = 2 end"); WARNING: replacing module foo. <Julia: Main.foo> gap> Julia.foo.x; 1
So what happens is that Julia.foo is cached, and so is not updated when the underlying module changes. We should deal with that better.
Julia.foo
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I just run into this while testing some code:
So what happens is that
Julia.foo
is cached, and so is not updated when the underlying module changes. We should deal with that better.The text was updated successfully, but these errors were encountered: